[cmake-developers] [CMake 0012450]: Xcode generator: removing dependency in Xcode crashes Xcode

2011-09-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12450 == Reported By:Druon Assigned To:

[cmake-developers] [CMake 0012451]: MACOSX_BUNDLE path problem when building for iOS with Xcode

2011-09-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12451 == Reported By:Druon Assigned To:

Re: [CMake] FYI - From Ninja-build mailing list - Fwd: Proposal: restat rules

2011-09-09 Thread Rolf Eike Beer
Am Donnerstag, 8. September 2011, 19:54:46 schrieb Peter Collingbourne: On Wed, Sep 07, 2011 at 11:04:42PM -0400, Jean-Christophe Fillion-Robin wrote: -- Forwarded message -- From: Peter Collingbourne pe...@pcc.me.uk Date: Wed, Sep 7, 2011 at 9:17 PM Subject: Proposal:

[CMake] Howto disable printing the link command

2011-09-09 Thread Pere Mato Vila
The make option -s switches off printing the commands, but this seems not to be working for the CMake generated link command for shared libraries. Does anybody know how to avoid the printing of the link command? The reason I need this is because one of my large libraries produces a command

[CMake] 64 bit flags

2011-09-09 Thread pellegrini
Hello everybody, I have a Fortran project that is currently built (using gfortran, g95 or ifort) on 32 bits machines but that might need quite soon to be built on 64 bit machines as well. Does cmake automatically detect the processor architecture and add the 64 bit flag at configuration

[CMake] Fwd: 64 bit flags

2011-09-09 Thread Eric Noulard
I did forget the ML. -- Forwarded message -- From: Eric Noulard eric.noul...@gmail.com Date: 2011/9/9 Subject: Re: [CMake] 64 bit flags To: pellegrini pellegr...@ill.fr 2011/9/9 pellegrini pellegr...@ill.fr: Hello everybody, I have a Fortran project that is currently built

Re: [CMake] Fwd: 64 bit flags

2011-09-09 Thread pellegrini
Thanks a lot Eric for the clear explanation. Eric Eric Noulard a écrit : I did forget the ML. -- Forwarded message -- From: Eric Noulard eric.noul...@gmail.com Date: 2011/9/9 Subject: Re: [CMake] 64 bit flags To: pellegrini pellegr...@ill.fr 2011/9/9 pellegrini

Re: [CMake] Adding a custom line to CMake's makefiles?

2011-09-09 Thread Clifford Yapp
I can finally give a good concrete case where I might need to do this (or need some other very clever solution). I have created a distcheck command for BRL-CAD that has a lot of responsibilities, including doing a complete configure and build of BRL-CAD from a source archive expanded from a CPack

Re: [CMake] FYI - From Ninja-build mailing list - Fwd: Proposal: restat rules

2011-09-09 Thread Bill Hoffman
This is very cool work Peter. How well is this generator doing with the CMake tests? Is there a nija for windows? I would be interested in testing that. -Bill ___ Powered by www.kitware.com Visit other Kitware open-source projects at

[CMake] Deferred CPU count variable in CMake for Makefile generator?

2011-09-09 Thread Clifford Yapp
Per the customizing Makefile email, I'd like to ask if a mechanism exists or could be implemented to allow CMakeLists.txt files to define commands that pass a CPU count to subcommands - e.g. something that allows the generators to take a syntax along the lines of: ADD_CUSTOM_TARGET(subbuild

Re: [CMake] FYI - From Ninja-build mailing list - Fwd: Proposal: restat rules

2011-09-09 Thread Malfettone, Kris
Peter, I am very interested in the ninja generator and gave it a try for one of my very large projects. Unfortunately, I have approximately 100 targets all with the same output name(simple) but in CMake I give them all unique target names(dot separated name built from their place in the

Re: [CMake] Deferred CPU count variable in CMake for Makefile generator?

2011-09-09 Thread David Cole
On Fri, Sep 9, 2011 at 10:49 AM, Clifford Yapp cliffy...@gmail.com wrote: Per the customizing Makefile email, I'd like to ask if a mechanism exists or could be implemented to allow CMakeLists.txt files to define commands that pass a CPU count to subcommands - e.g. something that allows the

Re: [CMake] FYI - From Ninja-build mailing list - Fwd: Proposal: restat rules

2011-09-09 Thread Clifford Yapp
On Thu, Sep 8, 2011 at 2:54 PM, Peter Collingbourne pe...@pcc.me.uk wrote: Anyone who is interested in trying the Ninja generator with their own projects is welcome to clone my repository at: https://github.com/pcc/CMake/tree/ninja-generator and to report any issues encountered. Note that

[CMake] Problem to set /LIBPATH in Swig + Python + Windows.

2011-09-09 Thread Fernando Luz
Hi, I need to use a mix with SWIG and Python in a windows environment. I used SWIG_LINK_LIBRARIES( blabla ${PYTHON_LIBRARIES}) where ${PYTHON_LIBRARIES} I get using FindPackage(PythonLibs). But I have blank space in ${PYTHON_LIBRARIES} and this cause a error in my vcproj. Ex. If

[CMake] CMake 2.8.6-rc3 ready for testing!

2011-09-09 Thread David Cole
The CMake 2.8.6 release candidate stream continues! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D This email is also available on the Kitware blog at http://www.kitware.com/blog/home/post/165 If you want to test this out and ask for a fix, do it soon, or

Re: [CMake] Deferred CPU count variable in CMake for Makefile generator?

2011-09-09 Thread Clifford Yapp
Looks like $(MAKE) will do it, at least in testing so far - awesome! Thanks David. Cliff. On Fri, Sep 9, 2011 at 11:15 AM, David Cole david.c...@kitware.com wrote: if(${CMAKE_GENERATOR} MATCHES Make AND (${cmake_generator} MATCHES Make OR NOT cmake_generator)) # The

Re: [CMake] Adding a custom line to CMake's makefiles?

2011-09-09 Thread Mike Wittman
If you are building on Linux, try MAKEFLAGS=j8 make distcheck I have successfully used the MAKEFLAGS environment variable to propagate parallel build invocations through scripts that invoke make with fixed options. -Mike On 09/09/2011 09:21 AM, Clifford Yapp wrote: I can finally give a

Re: [CMake] Adding a custom line to CMake's makefiles?

2011-09-09 Thread Jean-Christophe Fillion-Robin
Reading through make documentation, seems setting -jx to MAKEFLAGS is a no-op. *The `-j' option is a special case (see section Parallel Executionhttp://theory.uwinnipeg.ca/localfiles/infofiles/make/make_47.html#SEC46). If you set it to some numeric value, `-j 1' is always put into

Re: [CMake] Adding a custom line to CMake's makefiles?

2011-09-09 Thread Mike Wittman
Yes, but only when setting MAKEFLAGS from within a Makefile. It appears the rules do not apply when MAKEFLAGS is set by the invoking shell. (And actually, current GNU make handles parallel execution differently on Linux, using a job server that all make subprocesses use to coordinate

Re: [CMake] Adding a custom line to CMake's makefiles?

2011-09-09 Thread Clifford Yapp
Thanks Mike, good to know! David actually solved my problem for me with the generator based conditional and the $(MAKE) variable, but that's a nifty workaround to have tucked away. Cheers, CY On Fri, Sep 9, 2011 at 3:37 PM, Mike Wittman m...@headwave.com wrote: ** If you are building on

[Cmake-commits] CMake branch, next, updated. v2.8.5-1866-g5a768fc

2011-09-09 Thread Bill Hoffman
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 5a768fc24e4e0b75ca939abec533ed89bfd101bf (commit) via

[Cmake-commits] CMake branch, release, updated. v2.8.5-450-g281b937

2011-09-09 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, release has been updated via 281b93734c306a29b4c2d151e2541178a8a18cc7 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1868-gea10d53

2011-09-09 Thread Bill Hoffman
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 ea10d5350c45f5a183f724322c86404c8f8413ed (commit) via