[cmake-developers] [CMake 0014465]: Under windows, the filename of the file currently compiled is echoed

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14465 == Reported By:ycollet Assigned To:

[cmake-developers] [CMake 0014467]: WiX Generator: Move the TARGETDIR directory from directories.wxs to the main template

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14467 == Reported By:Ådne Hovda Assigned To:

[cmake-developers] [CMake 0014468]: WiX: Include extra .wxs and/or .wixlib files

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14468 == Reported By:Ådne Hovda Assigned To:

Re: [cmake-developers] FLAGS on Darwin and custom languages

2013-10-09 Thread Brad King
On 10/08/2013 07:12 PM, Vittorio Giovara wrote: I noticed that in 2.8.11 under OSX CMake adds -F/Library/Frameworks in every kind of FLAGS rule, for any language. The flag is hard-coded in the C++-implemented generator code under the assumption that all compilers on APPLE support -F. The -F

[cmake-developers] WiX generator and generic file IDs

2013-10-09 Thread Ådne Hovda
Hi I've taken the CPack WiX generator for a spin and it covers most of our requirements, but I have a few suggestions for improvement: 1. Make it possible to specify a list of extra .wxs files to be included when building the installer. 2. Automatically generated IDs for File /, Directory

[cmake-developers] [CMake 0014470]: CPACK_ZIP_COMPONENT_INSTALL does not work

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14470 == Reported By:Bjoern Thiel Assigned To:

Re: [cmake-developers] WiX generator and generic file IDs

2013-10-09 Thread Brad King
On 10/09/2013 05:03 AM, Ådne Hovda wrote: I've taken the CPack WiX generator for a spin and it covers most of our requirements, but I have a few suggestions for improvement: FYI, the WiX generator is a contributed feature: git log -- Source/CPack/WiX Modules/CPackWIX.cmake

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Stephen Kelly
Brad King wrote: Steve, please explain your proposal in more detail. How does the list of requested features get mapped to the proper -std=cxx11 or equivalent flag? In my branch that is determined by which list the feature appears in. Eg, from GNU-CXX.cmake: if(NOT

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Stephen Kelly
Brad King wrote: Steve, Eike, Now that 2.8.12 is tagged I'd like to revive the work to support C++11 features. I met Eike in person today at Qt DevDays and talked about this topic a bit. The way forward is for me to get the infrastructure in place by cleaning up my branch. I'll aim for

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Brad King
On 10/09/2013 10:51 AM, Stephen Kelly wrote: I met Eike in person today at Qt DevDays and talked about this topic a bit. The way forward is for me to get the infrastructure in place by cleaning up my branch. I'll aim for handling a single feature. Then Eike will help with encoding the

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Brad King
On 10/09/2013 10:44 AM, Stephen Kelly wrote: if(NOT needs17 EQUAL -1) set(standard 17) elseif(NOT needs14 EQUAL -1) set(standard 14) elseif(NOT needs11 EQUAL -1) set(standard 11) endif() # ... set_property(TARGET ${TARGET_NAME} PROPERTY CXX_STANDARD ${standard}) This

[cmake-developers] [CMake 0014471]: -T switch with Intel Compiler does not set CMAKE_CXX_COMPILER properly

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14471 == Reported By:Christian Weigel Assigned To:

Re: [cmake-developers] WiX generator and generic file IDs

2013-10-09 Thread Nils Gladitz
I think I'd like to sign up as maintainer for the WiX generator unless someone else wants to volunteer. I probably won't put as much time into it as it would deserve so if there is someone else who wants to work on it instead I would not mind either. Nils On 09.10.2013 16:40, Brad King

Re: [cmake-developers] WiX generator and generic file IDs

2013-10-09 Thread Brad King
On 10/09/2013 12:56 PM, Nils Gladitz wrote: I think I'd like to sign up as maintainer for the WiX generator Wonderful, thanks! unless someone else wants to volunteer. I probably won't put as much time into it as it would deserve so if there is someone else who wants to work on it instead I

[cmake-developers] [CMake 0014472]: RPM Generator w/ component install and all comps in one package - name property has ALL_COMPONENTS_IN_ONE

2013-10-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14472 == Reported By:Lee Graber Assigned To:

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Rolf Eike Beer
Am Mittwoch, 9. Oktober 2013, 16:51:42 schrieb Stephen Kelly: Brad King wrote: Steve, Eike, Now that 2.8.12 is tagged I'd like to revive the work to support C++11 features. I met Eike in person today at Qt DevDays and talked about this topic a bit. The way forward is for me to get

Re: [cmake-developers] C++11 and target_compiler_feature proposal

2013-10-09 Thread Rolf Eike Beer
Am Mittwoch, 9. Oktober 2013, 15:54:18 schrieb Brad King: On 10/09/2013 12:21 PM, Rolf Eike Beer wrote: One thing that is currently unclear if the simulated compiler id stuff from Brad solves the problem of the Clang plugin running with gcc where one would get the gcc version as compiler

Re: [cmake-developers] FLAGS on Darwin and custom languages

2013-10-09 Thread Vittorio Giovara
On Wed, Oct 9, 2013 at 2:18 PM, Brad King brad.k...@kitware.com wrote: On 10/08/2013 07:12 PM, Vittorio Giovara wrote: I noticed that in 2.8.11 under OSX CMake adds -F/Library/Frameworks in every kind of FLAGS rule, for any language. The flag is hard-coded in the C++-implemented generator

[cmake-developers] Cmake configure unicode?

2013-10-09 Thread J Decker
Should cmake be able to configure unicode, if the unicode file has appropriate byte order indicators maybe? I know it doesn't... for windows (and a bad test for if windows at that) macro( DO_CONFIGURE_FILE input output ) if( $ENV{COMSPEC} MATCHES cmd ) STRING( REPLACE / \\ s1

Re: [CMake] How to write a correct wrapper of MESSAGE()?

2013-10-09 Thread Johannes Zarl
I guess you search for something like this: function(info) set(msg) foreach(i RANGE ${ARGC}) set(msg ${msg}${ARGV${i}}) endforeach() message(STATUS [info] ${msg}) endfunction() message(Foo:bar;baz space FOO) info(Foo:bar;baz space FOO) message(two words) info(two words)

Re: [CMake] Problem using VS 2012 Express and CMake

2013-10-09 Thread Óscar Fuentes
Aaron Nowack aaronbnow...@gmail.com writes: Has anyone been able to get the newest cmake release (2.8.11.2) working with Visual Studio 2013 Express RC? Since yesterday, the newest cmake release is 2.8.12. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ

[CMake] Create not builded executable in Visual Studio

2013-10-09 Thread Theo Diefenthal
Hi there, sometimes I like to debug my executable in two instances simultaneously. E.g. if I have a function which works sometimes and sometimes not, I like to grab both cases and go through it step by step. In Visual Studio, it is not trivial, but also not too hard, to setup a project twice in

[CMake] Building CMake on Cray XE6

2013-10-09 Thread Pettey . Lucas
Hello! I am trying to build Cmake 2.8.11.2 on a Cray XE6. I am using the GCC 4.8.0 compiler. I have tried both the ./bootstrap and CMake 2.8.4 to generate the makefile. I get the same error: Linking CXX executable ../bin/ccmake cd /u/lpettey/cmake-2.8.11.2/Source

Re: [CMake] Building CMake on Cray XE6

2013-10-09 Thread Rolf Eike Beer
On Wed Oct  9 18:08:36 2013 Pettey . Lucas lpet...@drc.com wrote: Hello! I am trying to build Cmake 2.8.11.2 on a Cray XE6. I am using the GCC 4.8.0 compiler. I have tried both the ./bootstrap and CMake 2.8.4 to generate the makefile. I get the same error: Linking CXX executable

Re: [CMake] Building CMake on Cray XE6

2013-10-09 Thread Bill Hoffman
On 10/9/2013 2:52 PM, Rolf Eike Beer wrote: /usr/src/packages/BUILD/ncurses-5.6/ncurses/../ncurses/./base/lib_mouse.c:432: undefined reference to `dlopen' Just guessing: your system libcurses is broken or requires linking to a different libc or something. Try building without it. Looks like it

Re: [CMake] How to write a correct wrapper of MESSAGE()?

2013-10-09 Thread Clark WANG
On Wed, Oct 9, 2013 at 7:44 PM, Johannes Zarl johannes.z...@jku.at wrote: I guess you search for something like this: function(info) set(msg) foreach(i RANGE ${ARGC}) set(msg ${msg}${ARGV${i}}) endforeach() message(STATUS [info] ${msg}) endfunction()

[Cmake-commits] CMake branch, master, updated. v2.8.12-137-g12a7e2b

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 12a7e2b10c447e3ed61c2bca69f0264f7fcbdef9 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-139-g8424d56

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 8424d569f0f347c084e919d5c6037ccadb959dab (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-147-ge81b674

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via e81b6742f72869a25e59230948a34a02f504046d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-149-g1c1a904

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 1c1a904328093933d6d228d8117e5fd7231defb2 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-173-gf33068f

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via f33068f6157bf1cbba2f37df0f41c80aa5fb19a5 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-179-g5925e34

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 5925e34107a1571a16e940bea2fcc88d8d3df3e1 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-177-gbe9d289

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via be9d289fcef487753a5c88268e9ed4262e39633b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-181-g7e4910f

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 7e4910fe47d667e059e42ac6395b0f4726f17064 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.12-3730-g1e866cb

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 1e866cb43dee3504f987c9fabe8414fd12a7b251 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-170-ge5f1721

2013-10-09 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via e5f17214a522da70c52acf8394a029344c59b9d0 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.12-3732-g9e72c83

2013-10-09 Thread Stephen Kelly
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 9e72c837076f3cb0040a52d75cb58fad58d17bc4 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.12-3734-g3b257e0

2013-10-09 Thread Stephen Kelly
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 3b257e09aab8a00e5395288485802def7d07d1a0 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.12-3736-gbe7a948

2013-10-09 Thread Stephen Kelly
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via be7a948b7ef580a0eecb51cee2a0a5f0112e50d2 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.12-3738-g6533627

2013-10-09 Thread Stephen Kelly
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 6533627e2f2f5c5a861ed35952f0d4145128ac1b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.12-182-g872db62

2013-10-09 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 6298218..67c0824 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -2,5 +2,5 @@ set(CMake_VERSION_MAJOR 2) set(CMake_VERSION_MINOR 8) set(CMake_VERSION_PATCH 12) -set(CMake_VERSION_TWEAK 20131009