Re: [cmake-developers] target_link_libraries, IMPORTED targets and SYSTEM includes

2013-08-30 Thread Stephen Kelly
Stephen Kelly steveire@... writes: Matthew Woehlke wrote: Perhaps that is a misreading on my part, but I was getting the impression this change would make it so that imported targets can only ever be SYSTEM. I didn't really make that clear as the discussion developed, but yes, I think

Re: [cmake-developers] c++ feature detection and usage requirements

2013-08-30 Thread Stephen Kelly
Brad King wrote: On 08/29/2013 11:14 AM, Stephen Kelly wrote: Another option would be not to have the VERSION in the signature, but always use CMAKE_MINIMUM_VERSION_REQUIRED to determine what to generate. The content generated depends only on the features of the cmake binary being run, so

Re: [cmake-developers] c++ feature detection and usage requirements

2013-08-30 Thread Brad King
On 08/30/2013 08:02 AM, Stephen Kelly wrote: It turns out that in order to do this, the compiler features would have to be listed independently of Modules/Compiler/${ID}.cmake. Otherwise I wouldn't be able to check the MSVC features while using GNU. Maybe they should be listed in

Re: [cmake-developers] c++ feature detection and usage requirements

2013-08-30 Thread Stephen Kelly
Brad King wrote: On 08/30/2013 08:02 AM, Stephen Kelly wrote: It turns out that in order to do this, the compiler features would have to be listed independently of Modules/Compiler/${ID}.cmake. Otherwise I wouldn't be able to check the MSVC features while using GNU. Maybe they should be

Re: [cmake-developers] c++ feature detection and usage requirements

2013-08-30 Thread Brad King
On 08/30/2013 08:15 AM, Stephen Kelly wrote: However, thinking about it again, I think you're right that that is not necessary. Okay, it can always be factored out into separate files later anyway. I thought the idea was to specify in target_compiler_features the features needed so they

[cmake-developers] CMake 2.8.12-rc2 Released

2013-08-30 Thread Robert Maynard
The CMake 2.8.12 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Some of the notable changes in this release are: - Introduced target_compile_options command - Specify compile options to use when compiling a given target.

[CMake] CMake Code Beautifier

2013-08-30 Thread Tomasz Majchrowski
Hi We have environment in which we are maintain bunch of cmake scripts as separate component. Since the bunch of script is used by other developers it's growing quite fast. I'm looking for any CMake script code beautifier so others can easily read it ? Anyone know such a one ? BR, Tomasz --

Re: [CMake] CMake with Team Foundation Server?

2013-08-30 Thread Zamir Khan
Thank you both, Fabian and Petr, for your responses. I haven't had time to experiment with your suggestions yet, but at first glance this is extremely valuable information. -- View this message in context:

[CMake] ERROR when trying to Configure CMake

2013-08-30 Thread Rikkin
Hello, I'm getting an error when I try to Configure CMake. This is the error: CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindQt4.cmake:1382 (message): Found unsuitable Qt version from NOTFOUND, this code requires Qt 4.x Call Stack (most recent call first):

[CMake] Building on Windows, with NMake, without Unicode Support

2013-08-30 Thread Stewart, Robert
I can't figure out how to get CMake to build my code with setting -D_UNICODE and -DUNICODE. I don't want those manifest constants set, but they appear in the generated DependInfo.cmake files when generating code for NMake Makefiles: SET(CMAKE_CXX_COMPILER_ID MSVC) # Preprocessor definitions

[CMake] Possible FindQt issue with CMake 2.8.12-rc1? (And Freetype / GTK issues in 'next' ... )

2013-08-30 Thread David Cole
I'm using CMake 2.8.12-rc1, and configuring a build tree for the CMake source (master, at commit 452882eb). On second and later incremental cmake runs, I'm getting this cmake output: C:\dev\...\cmake-buildcmake . -- Found unsuitable Qt version from NOTFOUND -- Configuring done --

Re: [CMake] Building on Windows, with NMake, without Unicode Support

2013-08-30 Thread Stewart, Robert
Bill Hoffman wrote: On 8/30/2013 2:57 PM, Stewart, Robert wrote: I can't figure out how to get CMake to build my code with setting -D_UNICODE and -DUNICODE. I don't want those manifest constants set, but they appear in the generated DependInfo.cmake files when generating code for NMake

Re: [CMake] Building on Windows, with NMake, without Unicode Support

2013-08-30 Thread Bill Hoffman
On 8/30/2013 2:57 PM, Stewart, Robert wrote: I can't figure out how to get CMake to build my code with setting -D_UNICODE and -DUNICODE. I don't want those manifest constants set, but they appear in the generated DependInfo.cmake files when generating code for NMake Makefiles: I just did a

Re: [CMake] ERROR when trying to Configure CMake

2013-08-30 Thread Alexander Neundorf
On Friday 30 August 2013, Rikkin wrote: Hello, I'm getting an error when I try to Configure CMake. This is the error: CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindQt4.cmake:1382 (message): Found unsuitable Qt version from NOTFOUND, this code requires Qt 4.x

Re: [CMake] CMake Code Beautifier

2013-08-30 Thread Bill Hoffman
On 8/30/2013 10:06 AM, Tomasz Majchrowski wrote: Hi We have environment in which we are maintain bunch of cmake scripts as separate component. Since the bunch of script is used by other developers it's growing quite fast. I'm looking for any CMake script code beautifier so others can easily

Re: [CMake] Possible FindQt issue with CMake 2.8.12-rc1? (And Freetype / GTK issues in 'next' ... )

2013-08-30 Thread David Cole
In fact, using 'next' to configure itself is a little bit worse, with extra chatter about FreeType and GTK as well: -- Found unsuitable Qt version from NOTFOUND -- Configuring done -- Generating done -- Build files have been written to: ... Never mind on the Freetype / GTK report.

Re: [CMake] Possible FindQt issue with CMake 2.8.12-rc1? (And Freetype / GTK issues in 'next' ... )

2013-08-30 Thread David Cole
However the FindQt message is still in 'next' -- and strange in my opinion. One more addendum: This is the output when configuring with CMake 2.8.10.2: -- Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DI R QT_LIBRARY_DIR

[CMake] set_directory_properties() Isn't

2013-08-30 Thread Stewart, Robert
I'm effectively doing the following, with CMake 2.8, but it doesn't work. What am I missing? get_directory_property(before DEFINITIONS) set_directory_properties(PROPERTIES DEFINITIONS -DFOO) get_directory_property(after DEFINITIONS) before and after are the same, and before isn't -DFOO. _

[CMake] CMake 2.8.12-rc2 Released

2013-08-30 Thread Robert Maynard
The CMake 2.8.12 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Some of the notable changes in this release are: - Introduced target_compile_options command - Specify compile options to use when compiling a given target.

Re: [CMake] CMake Code Beautifier

2013-08-30 Thread Alan W. Irwin
On 2013-08-30 15:50-0400 Bill Hoffman wrote: On 8/30/2013 10:06 AM, Tomasz Majchrowski wrote: Hi We have environment in which we are maintain bunch of cmake scripts as separate component. Since the bunch of script is used by other developers it's growing quite fast. I'm looking for any CMake

Re: [CMake] set_directory_properties() Isn't

2013-08-30 Thread Fraser Hutchison
Hi Rob, The DEFINITIONS directory property is read-only. COMPILE_DEFINITIONS or the configuration-specific versions are mutable I believe. Cheers, Fraser. On 30/08/2013 22:30, Stewart, Robert wrote: I'm effectively doing the following, with CMake 2.8, but it doesn't work. What am I

Re: [CMake] set_directory_properties() Isn't

2013-08-30 Thread Stewart, Robert
Fraser Hutchison wrote: On 30/08/2013 22:30, Stewart, Robert wrote: I'm effectively doing the following, with CMake 2.8, but it doesn't work. What am I missing? get_directory_property(before DEFINITIONS) set_directory_properties(PROPERTIES DEFINITIONS -DFOO)

[CMake] CMAKE_FRAMEWORK_SYSTEM_FLAG_CXX?

2013-08-30 Thread Mihai Moldovan
Hi all I'd like to change -Fpath to -iframework path (or -iframework path.) With non-frameworks code, CMAKE_INCLUDE_SYSTEM_FLAG_CXX can be set to -isystem, so system includes are being included via -isystem path instead of -I path. Is there any such option for frameworks? Mihai smime.p7s

[CMake] Resetting cmake variables

2013-08-30 Thread outro pessoa
I am trying to build traverso-daw. In CMakeLists.txt file, wavpack.h was edited to use the full path; however, when trying this with the vorbis/vorbisfile.h, the path was ignored. Yes, I am quite aware that this is not the traverso mailing list; yet, at the same time, I need to be able to unravel

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4056-g0570e2d

2013-08-30 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 0570e2d1470add3f03b0dfdec7532092b8317079 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-814-gb62042d

2013-08-30 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 b62042dbfb422563dc9a240bd89efc28de8e4b17 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-816-g452882e

2013-08-30 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 452882ebeb032b25a08d35f2b2df3a785093ca6c (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4060-g5448723

2013-08-30 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 5448723ee0ac88ef1f215e41a12c5d15558978aa (commit) via

[Cmake-commits] CMake branch, release, updated. v2.8.11.2-819-gab9c7e3

2013-08-30 Thread Robert Maynard
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, release has been updated via ab9c7e36e598eb2fae3f3ee67c99c4afee7b8411 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4062-g03556af

2013-08-30 Thread David Cole
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 03556af64277597a98025d2e638b01f54a215bb6 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-817-gce6c736

2013-08-30 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 92c9618..14dece6 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 11) -set(CMake_VERSION_TWEAK 20130830