Re: [cmake-developers] Ninja generator on Windows

2012-02-01 Thread Peter Collingbourne
On Tue, Jan 31, 2012 at 10:42:40PM -0500, Bill Hoffman wrote: On 1/31/2012 5:58 PM, Peter Collingbourne wrote: That will be handy when it comes time to integrate this work upstream because KWSys is shared with other projects. Why isn't that time now? The generator already works and

Re: [cmake-developers] Improving CPack Documentation (and may be others as well)

2012-02-01 Thread David Cole
On Wed, Feb 1, 2012 at 2:27 AM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 31. Januar 2012, 23:39:30 schrieb Eric Noulard: 2012/1/31 Rolf Eike Beer e...@sf-mail.de: Eric Noulard wrote: 2012/1/31 Rolf Eike Beer e...@sf-mail.de: Should be fixed and pushed. Merge topic

Re: [cmake-developers] Improving CPack Documentation (and may be others as well)

2012-02-01 Thread Eric Noulard
2012/2/1 Eric Noulard eric.noul...@gmail.com: 2012/2/1 David Cole david.c...@kitware.com: On Wed, Feb 1, 2012 at 2:27 AM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 31. Januar 2012, 23:39:30 schrieb Eric Noulard: 2012/1/31 Rolf Eike Beer e...@sf-mail.de: Eric Noulard wrote:

Re: [cmake-developers] Improving CPack Documentation (and may be others as well)

2012-02-01 Thread David Cole
On Wed, Feb 1, 2012 at 3:17 PM, Eric Noulard eric.noul...@gmail.com wrote: 2012/2/1 Eric Noulard eric.noul...@gmail.com: 2012/2/1 David Cole david.c...@kitware.com: On Wed, Feb 1, 2012 at 2:27 AM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 31. Januar 2012, 23:39:30 schrieb Eric

Re: [cmake-developers] Ninja generator on Windows

2012-02-01 Thread Peter Kümmel
On 01.02.2012 20:56, Peter Collingbourne wrote: On Tue, Jan 31, 2012 at 10:42:40PM -0500, Bill Hoffman wrote: On 1/31/2012 5:58 PM, Peter Collingbourne wrote: That will be handy when it comes time to integrate this work upstream because KWSys is shared with other projects. Why isn't

Re: [cmake-developers] Ninja generator on Windows

2012-02-01 Thread Peter Kümmel
On 01.02.2012 21:04, Peter Collingbourne wrote: On Tue, Jan 31, 2012 at 10:58:32PM +, Peter Collingbourne wrote: On Tue, Jan 31, 2012 at 05:06:28PM -0500, Brad King wrote: On 1/31/2012 4:44 PM, Peter Kümmel wrote: OK, thanks. I already noticed the usage of OutputFormat::SHELL. Then I have

[cmake-developers] At FOSDEM this Sat.

2012-02-01 Thread Bill Hoffman
Alex and I will be speaking at FOSDEM this Saturday, hope to see some of you there. Here is a pointer to the talk: http://www.kitware.com/events/home/event/204 -Bill -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [cmake-developers] Ninja generator on Windows

2012-02-01 Thread Peter Kümmel
On 31.01.2012 23:40, Peter Collingbourne wrote: On Tue, Jan 31, 2012 at 10:32:23PM +0100, Peter Kümmel wrote: On 31.01.2012 16:19, Peter Collingbourne wrote: On Tue, Jan 31, 2012 at 12:15:59AM +0100, Peter Kümmel wrote: - Paths like 'c:\' - Ninja now supports colon escaping c: - c$: Is

[cmake-developers] CodeLite generator

2012-02-01 Thread Jim Goodnow II
Hi, I am working on a CodeLite generator for CMake. This is a native workspace/project generator for CodeLite on Linux. Is there a set of tests that should be run to verify that I am handling everything correctly? Thanks for any help pointing me in the right direction! - jim -- Powered by

[CMake] Issues with FindBoost / ${Boost_LIBRARIES}

2012-02-01 Thread Arnaud Gelas
Hi all, I have been trying to compile a very simple example with cmake (2.8.5) and boost, and I can't get what I am doing wrong... CMakeLists.txt -- cmake_minimum_required(VERSION 2.6) project(ReadGraph) find_package(Boost 1.46 COMPONENTS graph regex )

Re: [CMake] Issues with FindBoost / ${Boost_LIBRARIES}

2012-02-01 Thread Rolf Eike Beer
Hi all, I have been trying to compile a very simple example with cmake (2.8.5) and boost, and I can't get what I am doing wrong... CMakeLists.txt -- cmake_minimum_required(VERSION 2.6) project(ReadGraph) find_package(Boost 1.46 COMPONENTS graph regex ) Maybe you

Re: [CMake] Issues with FindBoost / ${Boost_LIBRARIES}

2012-02-01 Thread Michael Wild
On 02/01/2012 09:33 AM, Arnaud Gelas wrote: Hi all, I have been trying to compile a very simple example with cmake (2.8.5) and boost, and I can't get what I am doing wrong... CMakeLists.txt -- cmake_minimum_required(VERSION 2.6) project(ReadGraph)

Re: [CMake] Issues with FindBoost / ${Boost_LIBRARIES}

2012-02-01 Thread Arnaud Gelas
On Wed, Feb 1, 2012 at 4:27 AM, Michael Wild them...@gmail.com wrote: On 02/01/2012 09:33 AM, Arnaud Gelas wrote: Hi all, I have been trying to compile a very simple example with cmake (2.8.5) and boost, and I can't get what I am doing wrong... CMakeLists.txt --

Re: [CMake] Compile flag issues and VS Express

2012-02-01 Thread Yuri Timenkov
I can assume that 10M stack is reasonable for C code, where it's usual to allocate temporary buffers on stack (in C++ it's easier to use heap, e.g. using std::vector). Bad thing is - impact of this flag is detected only at run time. If with /Zm your code just won't compile, with /STACK everything

[CMake] Mercurial support for ExternalProject

2012-02-01 Thread Francisco Requena
Is there/will be support for Mercurial? Thanks -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to

[CMake] Install selected|group of targets

2012-02-01 Thread Joakim Hove
Hello; I have a quite large CMake project consisting of many libraries and executable programs. Schematically my codebase is organised as: root/CMakeLists.txt root/package1/CMakeLists.txt root/package1/lib/CMakeLists.txt root/package1/app/CMakeLists.txt root/package2/CMakeLists.txt

Re: [CMake] syntax error on Win7 x64

2012-02-01 Thread Bill Hoffman
On 2/1/2012 12:35 AM, Dev Guy wrote: OK I realized my error, I should be using $ENV{MSSDK_ROOT} If it is a windows path, you need to change it to a posix path for CMake. file(TO_CMAKE_PATH path result) -Bill On Wed, Feb 1, 2012 at 12:02 AM, Dev Guydevguy...@gmail.com wrote: I am

[CMake] rpath

2012-02-01 Thread Tom Deblauwe
Hello, I have a question about cmake with makefiles and g++ on linux: I have a single executable, consisting out of static libraries built by cmake. Now one of the static libraries needs a shared library which is not compiled by cmake but precompiled. I can link the one static lib with the

Re: [CMake] Mercurial support for ExternalProject

2012-02-01 Thread David Cole
ExternalProject is completely customizable regardless of the built-in support for various version control systems. Right now, ExternalProject has built-in support for cvs, svn and git. hg and bzr are supported in ctest (for ctest_update purposes), but to the best of my knowledge there is nobody

Re: [CMake] Enhancement to CHECK_C_RUNS_SOURCE

2012-02-01 Thread Clifford Yapp
On Wed, Feb 1, 2012 at 2:35 AM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 31. Januar 2012, 19:27:22 schrieb Clifford Yapp: We currently have a minor local enhancement to CHECK_C_RUNS_SOURCE This is at least missing documentation ;) Eike I can add that if there is any chance of it

Re: [CMake] Intel MKL with FindBLAS and FindLAPACK on OS X?

2012-02-01 Thread Tim Gallagher
In your MKL installation, do you have the mkl_link_tool in the mkl/tools folder? Tim - Original Message - From: Andreas Voegel andreasvoe...@gmail.com To: cmake@cmake.org Sent: Wednesday, February 1, 2012 1:11:02 AM Subject: [CMake] Intel MKL with FindBLAS and FindLAPACK on OS X?

Re: [CMake] 'Parallel' CMakeLists.txt?

2012-02-01 Thread Alexander Neundorf
On Tuesday 31 January 2012, Brad King wrote: On 1/31/2012 11:00 AM, Brad King wrote: On 1/31/2012 10:55 AM, Nicolas Desprès wrote: All these considerations are important but maybe we could just do first the easy path which is: add a -f option which change the default name every where, for

[CMake] relocation R_MIPS_HI16 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

2012-02-01 Thread Mathieu Malaterre
Hi all, I am trying to fix the following issue with building volview on mips: https://buildd.debian.org/status/fetch.php?pkg=volviewarch=mipselver=3.4-1stamp=1327908956 Quote: ... cd /build/buildd-volview_3.4-1-mipsel-QA92w9/volview-3.4/obj-mipsel-linux-gnu/VolViewLibraries/KWCommonPro

[CMake] ICC + Windows

2012-02-01 Thread Roland Schulz
Hi, what is the recommended Generator to compile on Windows with ICC on the shell? If I try to use the Visual Studio 2010 (or 2008) generator and then use msbuild (/ devenv) to compile, it uses MSVC as compiler. This is even though I have selected icl (CC=icl) and cmake had detected that the

[CMake] At FOSDEM this Sat.

2012-02-01 Thread Bill Hoffman
Alex and I will be speaking at FOSDEM this Saturday, hope to see some of you there. Here is a pointer to the talk: http://www.kitware.com/events/home/event/204 -Bill -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [CMake] Install selected|group of targets

2012-02-01 Thread Eric Noulard
2012/2/1 Joakim Hove joakim.h...@gmail.com: Hello; I have a quite large CMake project consisting of many libraries and executable programs. Schematically my codebase is organised as: root/CMakeLists.txt root/package1/CMakeLists.txt root/package1/lib/CMakeLists.txt

[Cmake-commits] CMake branch, next, updated. v2.8.7-2402-g314ef3f

2012-02-01 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 314ef3faeaba86af73c468b1393cc7724aa8434e (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2404-gea92423

2012-02-01 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 ea9242399868cc325739ce9e1bea9a0c3f0d85dc (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2406-g5ceab52

2012-02-01 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 5ceab525fcf04600df3e9136274063914859472f (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-220-gaa8aed8

2012-02-01 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, master has been updated via aa8aed83f25e71e938907a632608b300502f3b19 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-222-gbbc7259

2012-02-01 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, master has been updated via bbc7259f703566cef831b78d8616546bfe9c9d97 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-224-gb7fd024

2012-02-01 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, master has been updated via b7fd02422985cf4bf4e2ab2676b08fcbbf6ffdc9 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-226-ga98f99a

2012-02-01 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, master has been updated via a98f99a820cecae802d68400b2485706ae8d9e0b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-228-ga7c5a68

2012-02-01 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, master has been updated via a7c5a6896e440528bc4eafc4fc619539cb6323ce (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-230-gc8d102e

2012-02-01 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, master has been updated via c8d102eb40f9a4d435538bde2254f79fb6d76354 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-232-gfa6816b

2012-02-01 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, master has been updated via fa6816bd71bddcc6a018da062efe0a262edb74bd (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-238-g9603ee9

2012-02-01 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, master has been updated via 9603ee91154e222042118f5b056bc422c89b0abf (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-240-g94af99d

2012-02-01 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, master has been updated via 94af99d38813236bc381d2a8df2901fab09ea595 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-243-g3e0eeb9

2012-02-01 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, master has been updated via 3e0eeb9fc832cde370ea70b1b3c8e7ebb42c860a (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-245-ga3982c1

2012-02-01 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, master has been updated via a3982c15e48cb49f5f10f0c74dd0a9144f646d09 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-247-g79b7fe9

2012-02-01 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, master has been updated via 79b7fe9d5e7be36b5c9ed5cf3178d4387cdd2ed1 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-249-g29cddc6

2012-02-01 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, master has been updated via 29cddc60cda2f1cf94f2753cfcca3c9c7e7959a5 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-251-g28088aa

2012-02-01 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, master has been updated via 28088aa0454b5a0fdd1bf25e1cbf4e3f9dbc42ae (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-259-g0a11d33

2012-02-01 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, master has been updated via 0a11d3306632a1368960c18cee9d9605ac78cc25 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-261-ga4e0257

2012-02-01 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, master has been updated via a4e02578406c79c1ef0c43b72a1efabcb747d47b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-265-gbb29f27

2012-02-01 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, master has been updated via bb29f2765c0cd752c97862c6eb81975afdcdaed1 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2435-g7177838

2012-02-01 Thread Eric Noulard
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 7177838d6b24218bed553764cfbf56886b7736a1 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2437-g0ffa193

2012-02-01 Thread Eric Noulard
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 0ffa193c6462c006a873a2cbfb2408ab2b718995 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2441-g560b231

2012-02-01 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 560b231807cb6fb36925fe6fd74e393c3b9fd1fd (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2443-g565d4c3

2012-02-01 Thread Eric Noulard
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 565d4c34e67f8bdb4b5730b05d835b63a0417e08 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-266-ge858440

2012-02-01 Thread KWSys Robot
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 e8584401852a871b6cda57e570b7bb04b6dacf74 (commit) from

[Cmake-commits] CMake branch, next, updated. v2.8.7-2392-gbacfff6

2012-02-01 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 bacfff625c54e1f9991f27480baef6e25681bc7d (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2394-g170ef06

2012-02-01 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 170ef0621692eb8807c3e84b92b097e457953d6b (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2396-g28009fa

2012-02-01 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 28009fadac1ed04cb437fd6d13d33fe2ffa37aa0 (commit) via