[cmake-developers] [CMake 0015227]: Add Search path for AUTOUIC

2014-10-29 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15227 == Reported By:Christian Ehrlicher Assigned To:

Re: [cmake-developers] FindBoost.cmake cannot find some libraries when cross-compiling

2014-10-29 Thread Chuck Atkins
Merged: c752f8f165e9b8db7bc645cc55301277cd7773be Merge topic 'find-boost-no-reroot' - Chuck On Sun, Oct 26, 2014 at 12:18 AM, Chuck Atkins chuck.atk...@kitware.com wrote: Guillaume, Nice patch! Good detail in the commit message. I make a few minor tweaks for typos and tense, but other

Re: [cmake-developers] FindBoost.cmake cannot find some libraries when cross-compiling

2014-10-29 Thread Guillaume Papin
Great, Happy to contribute to CMake. - Guillaume From: Chuck Atkins [chuck.atk...@kitware.com] Sent: 26 October 2014 05:18 To: Guillaume Papin Cc: cmake-developers@cmake.org Subject: Re: [cmake-developers] FindBoost.cmake cannot find some libraries when

[cmake-developers] [PATCHv3] Tests: Run Tutorial steps 1-4 as tests for Windows CE

2014-10-29 Thread Pascal Bach
--- Tests/CMakeLists.txt | 53 +- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index e1e90a1..60b50f8 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1781,6 +1781,27 @@

Re: [cmake-developers] ExternalProject CMAKE_ARGS and CMAKE_CACHE_ARGS arguments

2014-10-29 Thread Brad King
On 10/28/2014 03:20 PM, Daniele E. Domenichelli wrote: Done, thanks. Good. In the updated docs for CMAKE_ARGS, CMAKE_CACHE_ARGS, and CMAKE_CACHE_DEFAULT_ARGS, the intro line now needs a period. The new RunCMake.ExternalProject test looks good. However, it does not verify that the external

Re: [cmake-developers] [PATCHv3] Tests: Run Tutorial steps 1-4 as tests for Windows CE

2014-10-29 Thread Brad King
On 10/29/2014 09:27 AM, Pascal Bach wrote: --- Tests/CMakeLists.txt | 53 +- 1 file changed, 52 insertions(+), 1 deletion(-) Applied, thanks: Tests: Run Tutorial steps 1-4 as tests for Windows CE

Re: [cmake-developers] New command 'file(LOCK_DIRECTORY ...)'

2014-10-29 Thread Brad King
On 10/28/2014 04:28 PM, Ruslan Baratov wrote: What do you think about this: Thanks for drafting the signature. file( LOCK path [DIRECTORY] # if present locked file will be path/cmake.lock (instead of path) [RELEASE] # do explicit unlock [GUARD FUNCTION|FILE|PROCESS] #

Re: [cmake-developers] cmake-gui icons

2014-10-29 Thread Ben Boeckel
On Mon, Oct 27, 2014 at 11:59:09 -0600, Orion Poplawski wrote: Fedora is pushing to have higher resolution icons for the applications. There already is CMakeSetup128.png, but these would need to get installed into the proper /usr/share/icons/ hierarchy and named appropriately for the correct

[cmake-developers] Help enabling libssh2 in cmake

2014-10-29 Thread Jameson Merkow
Hello, I am working on adding libssh2 support into cmake (specifically the curl code). Most of the ground work was previously done so most of what I had to use was add cmake support. I'm having some issues still. So, I've added the option for libssh2, its find_package call, and defined the

[cmake-developers] [CMake 0015228]: Compiler identification fails with -DCMAKE_SYSTEM_NAME=WindowsStore

2014-10-29 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=15228 == Reported By:Remi Assigned To:

Re: [CMake] Copying DLLs to output directory

2014-10-29 Thread Hendrk Sattler
Am 2014-10-28 18:25, schrieb Robert Dailey: I have a third party library like OpenSSL prebuilt for each platform and in my own structure in version control. I have a CMake script that creates an INTERFACE library target for it. I setup the include directories and link targets. However, I don't

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Hendrk Sattler
Am 2014-10-28 19:16, schrieb Robert Maynard: * The FindZLIB module now provides imported targets. Either the provided modules go the whole way for imported target or they just don't provide them. However: 113 if(ZLIB_FOUND) 114 set(ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR}) 115

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Daniel Schepler
Where would I find the list of available C++ language features? For instance, I would suppose there's one for auto, one for move constructors/assignment operators, and one for = delete of default constructors/destructors et al. These are probably the ones we'd be most interested in here, for

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Robert Maynard
You can find the known compile features that can be detected at: http://www.cmake.org/cmake/help/v3.1/prop_gbl/CMAKE_CXX_KNOWN_FEATURES.html At the end of the compile-features manual page ( http://www.cmake.org/cmake/help/v3.1/manual/cmake-compile-features.7.html ) there is a section on how to

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Daniel Schepler
(Whoops, accidentally sent this via private email before.) My question was about this part of the example: add_executable(consumer_with consumer_with.cpp) target_link_libraries(consumer_with foo) set_property(TARGET consumer_with CXX_STANDARD 11) add_executable(consumer_no consumer_no.cpp)

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread David Cole via CMake
I think your question about CXX_STANDARD is answered in the CXX_STANDARD docs: http://www.cmake.org/cmake/help/v3.1/prop_tgt/CXX_STANDARD.html If you MUST have it, you can set this property to ON: http://www.cmake.org/cmake/help/v3.1/prop_tgt/CXX_STANDARD_REQUIRED.html (Although I've not used it

[CMake] Xcode CMake PreLink Rules does not happen before the linker is called?

2014-10-29 Thread Andrew Lee
Hi, We have successfully ported our build scripts to a cross-platform CMake setup recently but there is just one thing we could not get right. We have a PRELINK build phase that needs to execute before linking. This works for generated Visual Studio projects and make scripts but not for Xcode

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Daniel Schepler
Thanks for the pointers, that does answer my question. I would just set CXX_STANDARD to 11 and leave CXX_STANDARD_REQUIRED unset. -- Daniel From: David Cole [mailto:dlrd...@aol.com] Sent: Wednesday, October 29, 2014 11:38 AM To: Daniel Schepler Cc: cmake@cmake.org Subject: Re: [CMake]

[CMake] CMake binary output directory for Visual Studio project with generated MinGW fortran projects

2014-10-29 Thread Neal Kruis
CMakers, I'm wondering if any of you can help me with a question that I've posted to Stack Overflow: http://stackoverflow.com/questions/26637673/how-to-set-the-cmake-binary-output-directory-for-visual-studio-project-with-gene Essentially, I'm finding that the cmake_add_fortran_subdirectory

Re: [CMake] CMake binary output directory for Visual Studio project with generated MinGW fortran projects

2014-10-29 Thread J Decker
when I asked a similar question years ago, someone said to make install rules so everything would be copied together; works for combinations of tools; works consistently for all generators then. Install directory is relative to the build directory if not an absolute path. Have to set debug

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-183-g985b15a

2014-10-29 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 985b15af7291ed2d24d73d204d5a16c8a00bc52c (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-185-g05cfc8f

2014-10-29 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 05cfc8fc2bbb1cbebeead2a811204e3e19eb6621 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-187-g71aff42

2014-10-29 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 71aff424d34ad5ee5d8f0f223ffad1d978e8398e (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-189-g89bca23

2014-10-29 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 89bca23ba2b5ae5cbd72ed8b1c2f33f9c9dd0ca3 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.1.0-rc1-68-ge51cd32

2014-10-29 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 e51cd32de34d9a2376594f80a6f31b4fb09c4e13 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.1.0-rc1-66-g0d6cdce

2014-10-29 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 0d6cdce5b5542250c067d846f037dfeca1bcc8e4 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.1.0-rc1-71-g3942cf6

2014-10-29 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 3942cf68b2e3b808b87c0127b1aa7bf52c59696c (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-194-gb1b779e

2014-10-29 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 b1b779ec2e7ae2cee14c0f199828ae956f4d3774 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-196-ge3562a6

2014-10-29 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 e3562a65a1a99e918969bccc6bbac892416bbdab (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-198-g5fb80a3

2014-10-29 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 5fb80a3cb5df6350fe59608aa25c6e983e57123e (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-201-gf2efb33

2014-10-29 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 f2efb33191d8ff719ae004698c6b6acf2cc0492b (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-203-g10387bf

2014-10-29 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 10387bf9de790b468b93c822d0b6c24a53ac892d (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-205-g3e00a76

2014-10-29 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 3e00a76c4ee11f3721d602e1bbcd2d4363c03cf6 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-208-g9bbd621

2014-10-29 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 9bbd6210e900046e2dd8f80b6380afa2bca25cd8 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.1.0-rc1-211-gd62a616

2014-10-29 Thread Rolf Eike Beer
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 d62a6161aeca493054c4c42bab90897d41f505b1 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.1.0-rc1-72-g5c5c1e3

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