Re: [cmake-developers] A goal for a simple Android toolchain file.

2014-03-31 Thread Stephen Kelly
Eric Wing wrote: I'm thinking it will probably be two weeks before I get back to Android. (If things go really well, maybe late next week.) Sounds good. I'd like to start by syncing up on a simple hello world executable and iterating toward the complex stuff. Can we chat on IRC to get on

[cmake-developers] [CMake 0014852]: Can't stop including Qt 4. I want to use Qt 5.

2014-03-31 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14852 == Reported By:Yew Kurabayashi  Assigned To:

Re: [cmake-developers] [patch] Policy CMP0046 warning fix.

2014-03-31 Thread Brad King
On 03/28/2014 05:19 PM, Nils Gladitz wrote: I merged fix_policy_diagnostics: http://cmake.org/gitweb?p=stage/cmake.git;a=commitdiff;h=209980cf5a1fb472ff688127c76f24e95bff8f40 There were few more related cases that should also be fixed. Thanks. I'll backport that for 3.0.0-rc4. Steve,

[cmake-developers] [CMake 0014853]: CMAKE_XCODE_ATTRIBUTE_SYMROOT is overriden by CMake

2014-03-31 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14853 == Reported By:Michał Cichoń Assigned To:

[cmake-developers] Documentation install directory

2014-03-31 Thread Stephen Kelly
Hi, According to packagers on IRC, documentation should be installed to prefix/share/doc. Currently it looks like CMake 3.0 installs to prefix/doc by default, if I'm reading Source/CMakeInstallDestinations.cmake correctly. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=322762 Should

Re: [cmake-developers] [CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread David Cole
Thanks for working on this. It will be cool to be able to build Metro apps using CMake. One thing I think is crucial here is to include somewhere an example or test project that actually builds a Metro app, and shows how you have to construct the CMakeLists for it, and any special

Re: [cmake-developers] Documentation install directory

2014-03-31 Thread Brad King
On 03/31/2014 10:15 AM, Stephen Kelly wrote: According to packagers on IRC, documentation should be installed to prefix/share/doc. Currently it looks like CMake 3.0 installs to prefix/doc by default, if I'm reading Source/CMakeInstallDestinations.cmake correctly.

Re: [cmake-developers] [PATCH] Better find module developer documentation

2014-03-31 Thread Alex Merry
On 27/03/14 14:33, Brad King wrote: On 03/26/2014 03:02 PM, Alex Merry wrote: I wrote some documentation on how to write a find module for KDE's extra-cmake-modules project, and Stephen suggested upstreaming it. So attached is a patch that does that. Thanks for working on this. I like the

Re: [cmake-developers] A goal for a simple Android toolchain file.

2014-03-31 Thread Brad King
On 03/27/2014 11:09 PM, Eric Wing wrote: One other issue I would like to see fixed is that it is impossible to change some of the settings like architecture after the first generation. I find that this makes the CMake GUI interface completely useless to me and I always have to load up all my

[cmake-developers] [CMake 0014854]: Xcode projects with binary files cannot load in Xcode

2014-03-31 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14854 == Reported By:Petr Lefner Assigned To:

Re: [cmake-developers] [CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread Gilles Khouzam
Hi, I'm new to CMake but am looking to help with this effort. I'm wondering if it would make more sense (and if it's possible) to have the WinRT flavors as separate platforms within the same solution as you would get if you create a new WinRT project in Visual Studio, instead of having 3

[cmake-developers] [CMake 0014855]: Unpacking Qt 5.2.1 source distribution fails (ExternalProject_Add)

2014-03-31 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14855 == Reported By:hansmi Assigned To:

Re: [cmake-developers] [PATCH] A little simplify Ninja code for linker commands

2014-03-31 Thread Ben Boeckel
On Mon, Mar 31, 2014 at 00:40:02 +0200, Jiri Malak wrote: I enclosed patch which a little simplify Ninja code for linker commands. It removes redundant code for rule variable name and add some temporary variables to improve code. Looks good to me. It passes all the tests on my machine. I've

[CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread Minmin Gong
Hi cmake developers and users, This is a extend discussion of this ticket: http://www.cmake.org/Bug/view.php?id=13511. In our project, we need to build an Win8+ Metro app. Currently the CMake do support VS_WINRT_EXTENSIONS. However, if you want to build an exe instead of dll or lib, even with x86

[CMake] CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE

2014-03-31 Thread Micha Renner
Hallo, The Documentation says: Automatically add the current source- and build directories to the INTERFACE_INCLUDE_DIRECTORIES. How can I get this information? SET(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON) ADD_LIBRARY(TLib1 SHARED tlib1.c tlib1.h)

Re: [CMake] find_package with static library that uses pkg-config not working

2014-03-31 Thread Aurelien Richez
Hi, pkg_check_modules used by find_package should generate MYLIBPREFIX_CFLAGS and MYLIBPREFIX_STATIC_CFLAGS according to the documentation. You can try HAMLIB_STATIC_LIBRARIES. However, the finders often use PC_MYLIB as prefix using pkg_check_modules. So may be PC_HAMLIB_STATIC_LIBRARIES

Re: [CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread David Cole
Thanks for working on this. It will be cool to be able to build Metro apps using CMake. One thing I think is crucial here is to include somewhere an example or test project that actually builds a Metro app, and shows how you have to construct the CMakeLists for it, and any special

Re: [CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread Dan Kegel
On Mon, Mar 31, 2014 at 7:13 AM, David Cole dlrd...@aol.com wrote: It will be cool to be able to build Metro apps using CMake. Well, aside from the obvious problem :-) -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

[CMake] masm support in visual studio project generators

2014-03-31 Thread Someone Somebody
Hello, I'm new to cmake and trying to evaluate external will work for my projects. But I encountered one issue in that CMake has no support for using masm from visual studio project files. CMake quite suprised me already by supporting nearly every feature that I need without much effort but

Re: [CMake] find_package with static library that uses pkg-config not working

2014-03-31 Thread Bill Somerville
On 31/03/2014 10:18, Aurelien Richez wrote: Hi, Hi Aurélien, I'm not sure I fully understand your suggestion. The Find.cmake is written by me and looks like this. Findhamlib.cmake: +++ # - Try to find hamlib # Once done, this will define: # #

[CMake] Clarification for quoting of parameters for configure_file()

2014-03-31 Thread SF Markus Elfring
Hello, A wiki article mentions some details about how parameters are handled for CMake commands. http://cmake.org/Wiki/CMake/Language_Syntax#CMake_splits_arguments_unless_you_use_quotation_marks_or_escapes. I would like to try out the following command with unquoted parameters in a small build

Re: [CMake] find_package with static library that uses pkg-config not working

2014-03-31 Thread Aurelien Richez
Hello again I'm not familiar with libFindMacros.cmake but it seems that it just handles libraries and headers, not compilation/linker flags. However libfind_pkg_check_modules (hamlib_PKGCONF hamlib) should generate several variables (for the shared library and for the static library),

Re: [CMake] Fwd: [PATCH] Add support for Metro apps

2014-03-31 Thread Gilles Khouzam
Hi, I'm new to CMake but am looking to help with this effort. I'm wondering if it would make more sense (and if it's possible) to have the WinRT flavors as separate platforms within the same solution as you would get if you create a new WinRT project in Visual Studio, instead of having 3

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1600-g93508c1

2014-03-31 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 93508c10e520978aec8a0c287a6ca3f5de43c16b (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1608-gb308f89

2014-03-31 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 b308f89e61305028d49f489c4082dcb492b4f008 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1619-g629c0f7

2014-03-31 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 629c0f7eb84ddd5d77ed3809fa7309d16f335917 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1623-ge083dc3

2014-03-31 Thread Clinton Stimpson
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 e083dc3056b6fb79b1a42f1a3b72f83dd87bd037 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1626-g8e94429

2014-03-31 Thread Clinton Stimpson
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 8e944299a246e2156292919040c2840281f12a81 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1629-g25d13b6

2014-03-31 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 25d13b60b5a2acca6a256a3a75aa33d727f89854 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1631-gd7e3fd7

2014-03-31 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 d7e3fd7203968a0bc7635dcd2e796057412956fc (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1633-g2b4fcf4

2014-03-31 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 2b4fcf4abe2b70d89ae8d82f34822bf786d3890e (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1635-g2d81b24

2014-03-31 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 2d81b243ed302815fed17161e4d2c6b6cb4a7fab (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1637-ga5e52f0

2014-03-31 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 a5e52f0b76ff4867f4cecee63382128c89adad21 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1639-g0e73b07

2014-03-31 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 0e73b07fd59f98447ffe3c21429ed244941d282a (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1641-g6f97563

2014-03-31 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 6f97563b0db7f51a6b59414d9750f325fdf3ec6c (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1644-g8ead6f4

2014-03-31 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 8ead6f4f89d2c9e9b4dee34de399438d0f61c4a9 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1646-gc299379

2014-03-31 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 c2993794957f88b7dcb3f696b7fb59256e2d0ef0 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1648-gff7944a

2014-03-31 Thread Ben Boeckel
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 ff7944a487e2e591a0ffb2b58f300d8a2e0ced00 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1681-gf34a5af

2014-03-31 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 f34a5aff72c9f233ed45b304b3fa0c602334d55c (commit) via

[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1683-ga4e1a75

2014-03-31 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 a4e1a75add70f5939e9319eec5211e912b488e76 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.0.0-rc3-402-ge3e1ba3

2014-03-31 Thread Kitware Robot
20140331) +set(CMake_VERSION_PATCH 20140401) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- CMake