[cmake-developers] [CMake 0014373]: [CMake/Modules/FindGDAL] Use `gdal-config --cflags` to get GDAL_INCLUDE_DIR

2013-08-26 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=14373 == Reported By:Pierrick Koch Assigned To:

Re: [cmake-developers] [CMake] CMake 2.8.12-rc1 Released

2013-08-26 Thread Brad King
On 08/22/2013 04:39 PM, Alexander Neundorf wrote: Beside that, I played around with it a bit. If 2.8.12 is required, it errors out, as documented. If I use 2.8.12 and require 2.8.11: [snip] So this seems to behave differently than in 2.8.11 even if 2.8.11 is required (and so the policy

Re: [cmake-developers] [CMake] CMake 2.8.12-rc1 Released

2013-08-26 Thread Stephen Kelly
Brad King wrote: On 08/22/2013 04:39 PM, Alexander Neundorf wrote: Beside that, I played around with it a bit. If 2.8.12 is required, it errors out, as documented. If I use 2.8.12 and require 2.8.11: [snip] So this seems to behave differently than in 2.8.11 even if 2.8.11 is required

Re: [cmake-developers] [PATCH] Add BSD paths for Tcl/Tk 8.6.

2013-08-26 Thread Brad King
On 08/25/2013 06:32 PM, Raphael Kubo da Costa wrote: Follow-up to 4a015f7: those paths added for OpenBSD also work on other BSDs, some of which are already using version 8.6 of Tcl/Tk. Applied, thanks: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=141ce010 -Brad -- Powered by

[cmake-developers] [CMake 0014376]: End of output for failed tests is more useful than the start

2013-08-26 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=14376 == Reported By:drus...@gmail.com Assigned To:

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread Niels Dekker - address until 2014
On 2013-08-25 23:28, David Golub wrote: Having received no bug reports for RC3, I’ve finalized the 1.0 release of CMake Tools for Visual Studio, which provides syntax highlighting and IntelliSense support for CMake. It is available for download from the project web site at

[CMake] One build, multiple compilers and packages

2013-08-26 Thread Craig Scott
Hi. First, apologies for the length. If you are not interested in mixing different compilers and generating multiple packages all within one build, you can probably stop reading now. After trying various approaches and not being entirely satisfied with any, I thought I'd seek the collective

[CMake] Support for custom wix template

2013-08-26 Thread Lars Lars
Hello, I would like to know if the feature CPackWIX: Add support for custom WiX templates [commit: bf23891942d95a4075f349f6c4043647d47e546b] will be included in version 2.8.12? I cannot find it listed in http://public.kitware.com/Bug/roadmap_page.php?version_id=112 but downloading a

Re: [CMake] Support for custom wix template

2013-08-26 Thread Nils Gladitz
I haven't tried this but I modeled the use of the template in the WiX generator after the NSIS generator which I think allows custom templates by creating a template with the same name in a custom path and appending it to CMAKE_MODULE_PATH

Re: [CMake] Support for custom wix template

2013-08-26 Thread Eric Noulard
2013/8/26 Lars Lars laasu...@hotmail.com: Hello, I would like to know if the feature CPackWIX: Add support for custom WiX templates [commit: bf23891942d95a4075f349f6c4043647d47e546b] will be included in version 2.8.12? I cannot find it listed in

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread David Golub
Certainly. The two version differ solely in their version number, as there were no bugs reported in RC3. David Golub -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Niels Dekker - address until 2014 Sent: Monday, August 26, 2013 4:30 AM To:

Re: [CMake] [cmake-developers] CMake 2.8.12-rc1 Released

2013-08-26 Thread Brad King
On 08/22/2013 04:39 PM, Alexander Neundorf wrote: Beside that, I played around with it a bit. If 2.8.12 is required, it errors out, as documented. If I use 2.8.12 and require 2.8.11: [snip] So this seems to behave differently than in 2.8.11 even if 2.8.11 is required (and so the policy

Re: [CMake] One build, multiple compilers and packages

2013-08-26 Thread clinton
- Original Message - Hi. First, apologies for the length. If you are not interested in mixing different compilers and generating multiple packages all within one build, you can probably stop reading now. After trying various approaches and not being entirely satisfied with any, I

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread Niels Dekker - address until 2014
On 2013-08-26 14:33, David Golub wrote: The two version differ solely in their version number, as there were no bugs reported in RC3. Actually, I did report an issue on RC3, asking for lowercase code completion of CMake commands: http://cmaketools.codeplex.com/workitem/2 What do you think?

Re: [CMake] CMake 2.8.12-rc1 Released

2013-08-26 Thread Robert Maynard
I am able to replicate this problem with the 2.8.12rc1. Are you able to construct a minimal test case so I can dig into why this is happening? On Tue, Aug 20, 2013 at 10:33 PM, Clifford Yapp cliffy...@gmail.com wrote: Just as a datapoint, the Ninja build of BRL-CAD when performed with this

[CMake] How to check if a file is a source file?

2013-08-26 Thread Robert Dailey
I have a common function defined that creates targets for me. I pass in a big list of source files. Within here are resource files (.RC), header files (.H) and source files (.CPP). However, I know that CPP files can take many extensions, so I want to create a thorough, safe check. Does CMake have

Re: [CMake] How to check if a file is a source file?

2013-08-26 Thread Nils Gladitz
Maybe CMAKE_LANG_SOURCE_FILE_EXTENSIONS would help with that. For C++ this is e.g. CMAKE_CXX_SOURCE_FILE_EXTENSIONS set to C;M;c++;cc;cpp;cxx;m;mm;CPP. Nils On 26.08.2013 19:10, Robert Dailey wrote: I have a common function defined that creates targets for me. I pass in a big list of source

Re: [CMake] Support for custom wix template

2013-08-26 Thread Lars Lars
Date: Mon, 26 Aug 2013 13:29:22 +0200 Subject: Re: [CMake] Support for custom wix template From: eric.noul...@gmail.com To: laasu...@hotmail.com CC: cmake@cmake.org 2013/8/26 Lars Lars laasu...@hotmail.com: Hello, I would like to know if the feature CPackWIX: Add support for custom

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread Marek Vojtko (Firaxis)
On Mon, 26 Aug 2013 16:30:08 +0200, Niels Dekker wrote: On 2013-08-26 14:33, David Golub wrote: The two version differ solely in their version number, as there were no bugs reported in RC3. Actually, I did report an issue on RC3, asking for lowercase code completion of CMake commands:

[CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Thomas Taranowski
I have the following build structure: workspace/ CMakeLists.txt # top level cmake component_a/ CMakeLists.txt # component cmake src/ # source in here component_b/ CMakeLists.txt # component cmake src/ # source in here Now, I'm trying to

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Dan Kegel
On Mon, Aug 26, 2013 at 12:16 PM, Thomas Taranowski t...@baringforge.com wrote: Now, I'm trying to implement a multi-stage build which does the following: 1) builds some external third-party dependencies. 2) auto-generate some code 3) build the source 4) package the result To do this, I'd

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Matthew Woehlke
On 2013-08-26 15:16, Thomas Taranowski wrote: I have the following build structure: workspace/ CMakeLists.txt # top level cmake component_a/ CMakeLists.txt # component cmake src/ # source in here component_b/ CMakeLists.txt # component cmake

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Thomas Taranowski
Dan, How did you end up handling the precompiled dependencies? Did you use a dependency management system, such as ivy, or roll your own system? Thomas Taranowski | 425-442-9209 | skype: thomas.taranowski | baringforge.com On Mon, Aug 26, 2013 at 12:21 PM, Dan Kegel d...@kegel.com wrote:

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Thomas Taranowski
Matthew, I tend to agree with you that 2 would not generally be a target. However, there are external factors at play that I haven't mentioned. For one, in our environment we'd like to pull the auto generated code into a code review tool, and to mechanize that we have a commit daemon running

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Matthew Woehlke
On 2013-08-26 16:37, Thomas Taranowski wrote: I tend to agree with you that 2 would not generally be a target. However, there are external factors at play that I haven't mentioned. For one, in our environment we'd like to pull the auto generated code into a code review tool, and to mechanize

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread David Golub
More or less. I'll be adding support for VS 2013 once it's released. David Golub From: Pau Garcia i Quiles [mailto:pgqui...@elpauer.org] Sent: Monday, August 26, 2013 3:12 PM To: David Golub Cc: CMake ML Subject: Re: [CMake] CMake Tools for Visual Studio 1.0 Released! Hello again,

Re: [CMake] CMake Tools for Visual Studio 1.0 Released!

2013-08-26 Thread David Golub
It's there--you just need to configure it to use lowercase instead of uppercase. Go to Tools Options in Visual Studio and select the CMake Tools page. Then, then on the Commands In Lowercase option. David Golub -Original Message- From: cmake-boun...@cmake.org

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Craig Scott
Thomas, there are a lot of parallels between your scenario and the one I just posted a question about yesterday (see subject line One build, multiple compilers and packages). One of the two scenarios that Matthew suggested is the one we've used to handle the external third party dependencies - we

Re: [CMake] Question about best practices for large Multi-stage builds

2013-08-26 Thread Thomas Taranowski
Craig, Thanks for the info. I went back and read through your post, and our build has many of the same issues you are facing. For our project I ended up keeping all dependencies in the context of the project workspace, and am not using the find* modules to fulfill dependencies. Thomas

Re: [CMake] CMake 2.8.12-rc1 Released

2013-08-26 Thread Clifford Yapp
On Mon, Aug 26, 2013 at 9:28 PM, Clifford Yapp cliffy...@gmail.com wrote: I'll see if I can dig any deeper. After turning off all the src and doc subdirectories, I can still trigger the rebuild - here's the diff between the CMake outputs in the 4a6397a70c2b467b1285be4c0bae7533eb16f5e0 and

Re: [CMake] CMake 2.8.12-rc1 Released

2013-08-26 Thread Clifford Yapp
On Mon, Aug 26, 2013 at 12:32 PM, Robert Maynard robert.mayn...@kitware.com wrote: I am able to replicate this problem with the 2.8.12rc1. Are you able to construct a minimal test case so I can dig into why this is happening? Robert, So far I haven't had much luck creating a minimal test

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3979-g6079de0

2013-08-26 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 6079de0e949cba9b052531947d5d016c17762380 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-783-g32ea090

2013-08-26 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 32ea090a70a2d5cc8fbcfe2511492f74e97f7dff (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-787-g757de2b

2013-08-26 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 757de2bb784789caab5e0a5498b1321814c16a65 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-785-g4923c6c

2013-08-26 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 4923c6c724ffa64043d1bac5ec148e8d01f5d02a (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-789-g4d5d8df

2013-08-26 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 4d5d8df0cdd1d413853a0e8b64b20a8e63c05230 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3986-gfc3b0d2

2013-08-26 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 fc3b0d23272d8f9c83aaabcfe1b8616796f8 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-791-g889527a

2013-08-26 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 889527aa9cd9f2b69d429ed766926105242fb0a8 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3988-gb8db0e3

2013-08-26 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 b8db0e358f0d38a958480a07d8a32fd768ef457e (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3991-g7ad46cb

2013-08-26 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 7ad46cbd4ecf7a5125dab8272f7b8605db38ab5c (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3996-g788aa45

2013-08-26 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 788aa450759a9808171b631e8bc0277c2524b6c3 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3994-g79686ef

2013-08-26 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 79686ef6fd11bf4b0bfab30e7b28469946075641 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3998-gf502715

2013-08-26 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 f5027157823b45ac17ffc2816c79e8fdf9b12ce0 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-794-gc5baca7

2013-08-26 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 c5baca780472a6e2ec1615bed2619be98482b992 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4000-g6867900

2013-08-26 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 686790055ddd8cddbcbf13bff032442915a59398 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-796-gae4630f

2013-08-26 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 ae4630fb1dd2f5d51f9fbea7007336af07eb83c9 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.11.2-797-g9b29408

2013-08-26 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 3db3d9e..5fb1e69 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 20130826