[cmake-developers] [CMake 0013745]: CHECK_C_COMPILER_FLAG doesn't work with -march=xlr option with a MIPS gcc cross compiler

2012-11-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=13745 == Reported By:Mahendra Ladhe Assigned To:

[cmake-developers] [CMake 0013746]: FindOpenGL module reports OpenGL_FOUND even when no OPENGL_INCLUDE_DIR is set

2012-11-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13746 == Reported By:hades Assigned To:

[cmake-developers] [CMake 0013747]: export(PACKAGE) prioritizes build-tree over install-tree

2012-11-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13747 == Reported By:Stephen Kelly Assigned To:

[cmake-developers] WindowsCE

2012-11-27 Thread Patrick Gansterer
Hi, since CMake 2.8.10 it's possible to build for WindowsCE via the NMake Makefile. But this needs some special preperation of the environment variables. My last changed added parsing support for WCE.VCPlatform.config, where this information is stored. Qt has a special tool

[cmake-developers] CMake 2.8.10.2 available for download

2012-11-27 Thread David Cole
And a few more... Here are some important bug fixes to the CMake 2.8.10 release. Thanks going out to Alex Neundorf, Brad King, Rolf Eike Beer, (and me), … fixes for the following problems are now available in a 2.8.10.2 bug fix release. The change log page for this bug-fix only release is here:

[cmake-developers] [CMake 0013750]: Binaries for Win64

2012-11-27 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13750 == Reported By:David Doria Assigned To:

[CMake] Building multiple Debian packages from one source

2012-11-27 Thread Patrick Nowak
Hi, I am currently trying to build more then one Debian package from my sources. One package should contain the shared lib and the binary and should simply be called projectname-1.0.0.deb and the other one should contain the headers and optionally a static lib and should be called

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread Michael Jackson
On Nov 27, 2012, at 12:46 AM, Titus von Boxberg ti...@v9g.de wrote: Am 27.11.2012 05:24, schrieb Michael Jackson: That will teach me to hit enter in GMail.. My question is this: What is the magic CMake incantation to get Visual Studio 2010 to use more than a single processor when

Re: [CMake] Building multiple Debian packages from one source

2012-11-27 Thread Eric Noulard
2012/11/27 Patrick Nowak pa.no...@tu-bs.de: Hi, I am currently trying to build more then one Debian package from my sources. One package should contain the shared lib and the binary and should simply be called projectname-1.0.0.deb and the other one should contain the headers and optionally

Re: [CMake] Building multiple Debian packages from one source

2012-11-27 Thread Patrick Nowak
Hi Eric, thanks, set(CPACK_DEB_COMPONENT_INSTALL 1) solved my problem. Best regards, Patrick Am 27.11.2012 14:17, schrieb Eric Noulard: 2012/11/27 Patrick Nowak pa.no...@tu-bs.de: Hi, I am currently trying to build more then one Debian package from my sources. One package should contain the

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread John Drescher
On Tue, Nov 27, 2012 at 7:21 AM, Michael Jackson mike.jack...@bluequartz.net wrote: On Nov 27, 2012, at 12:46 AM, Titus von Boxberg ti...@v9g.de wrote: Am 27.11.2012 05:24, schrieb Michael Jackson: That will teach me to hit enter in GMail.. My question is this: What is the magic CMake

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread Mateusz Loskot
On 27 November 2012 14:23, John Drescher dresche...@gmail.com wrote: On Tue, Nov 27, 2012 at 7:21 AM, Michael Jackson mike.jack...@bluequartz.net wrote: On Nov 27, 2012, at 12:46 AM, Titus von Boxberg ti...@v9g.de wrote: Am 27.11.2012 05:24, schrieb Michael Jackson: That will teach

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread John Drescher
On Tue, Nov 27, 2012 at 9:41 AM, Mateusz Loskot mate...@loskot.net wrote: On 27 November 2012 14:23, John Drescher dresche...@gmail.com wrote: On Tue, Nov 27, 2012 at 7:21 AM, Michael Jackson mike.jack...@bluequartz.net wrote: On Nov 27, 2012, at 12:46 AM, Titus von Boxberg ti...@v9g.de

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread Mateusz Loskot
On 27 November 2012 14:47, John Drescher dresche...@gmail.com wrote: On Tue, Nov 27, 2012 at 9:41 AM, Mateusz Loskot mate...@loskot.net wrote: On 27 November 2012 14:23, John Drescher dresche...@gmail.com wrote: On Tue, Nov 27, 2012 at 7:21 AM, Michael Jackson

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread John Drescher
Right, perhaps complex inter-project dependencies halt the processes. I believe this is part of the reason. Projects like ITK with hundreds of small utilities tend to utilize the cores after the dependent libraries are built however my code that has very few utilities and significantly more

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Paolo Ciccone
Hi Eric. Do you mean that inside CPackConfig.cmake the value you(ve set before INCLUDE(CPack) are not used? That is correct. Am I overlooking something? Not something obvious I think. Could it be possible that INCLUDE(CPack) has been called by a subproject before you actually do it

[CMake] Disable Warning: Manually-specified variables were not used by the project

2012-11-27 Thread Sören Textor
Hello Is it possible to disable the warning: Manually-specified variables were not used by the project? This warning is nice, but in my case I'm not interessted in and I know that I put some unused variables for certain circumstances. Best SirAnn -- Powered by www.kitware.com Visit other

Re: [CMake] Disable Warning: Manually-specified variables were not used by the project

2012-11-27 Thread Jean-Christophe Fillion-Robin
Hi Sören, Command line option --no-warn-unused-cli should help you. See http://www.cmake.org/cmake/help/v2.8.8/cmake.html#opt:--no-warn-unused-cli and http://www.cmake.org/pipermail/cmake/2011-February/042908.html Hth Jc On Tue, Nov 27, 2012 at 10:10 AM, Sören Textor

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread Gary Little
Try ninja, which is available via macports. My primary project uses CMake to create 3 Windows build environments: nmake, VisualStudio, and ninja. In the VS environment I can use msbuild /m project.sln. The ninja environment is about the tastest build that I have available for Windows. Gary

Re: [CMake] How to get Visual Studio to use more than a single core for compiling

2012-11-27 Thread David Cole
FYI: in any environment, you can use cmake --build . in the build directory to build from the command line. On Tue, Nov 27, 2012 at 10:36 AM, Gary Little gglit...@comcast.net wrote: Try ninja, which is available via macports. My primary project uses CMake to create 3 Windows build

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Eric Noulard
2012/11/27 Paolo Ciccone phcicc...@gmail.com: Hi Eric. Do you mean that inside CPackConfig.cmake the value you(ve set before INCLUDE(CPack) are not used? That is correct. So this is plain wrong and I don't understand how it is possible?? We should first find to fix this before examining

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Paolo Ciccone
I have prepared a testcase that I can use to replicate the issue all the time. I am running Mac OS 10.8.2 (ML) and I tested this case with both CMake/CPack 2.8.10.1 and 2.8.9. The command issued is simply: cmake -G Xcode You can find the test case, which is stripped down to almost nothing here:

[CMake] List from strings (CMAKE_CXX_FLAGS and friends)

2012-11-27 Thread James Bigler
I'm running into this again, and I trawled through the mailing list, and according to Bill (4/11/2009 - managing lists with space separated elements), I should be able to get a list from a string with a single command. If you want to convert a string to a list you can do it like this: set(list

[CMake] Problem with Visual Studio 2010, Windows 7 64bit

2012-11-27 Thread David Doria
I am trying to build VTK for the first time on a 64bit Windows 7 system. I have Visual Studio 2010 installed. I ran the 64bit Visual Studio Command Prompt and ran 'cmake-gui' from it. I pointed it to the VTK source directory and gave it a build directory. When I configure, I get:

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Eric Noulard
2012/11/27 Paolo Ciccone phcicc...@gmail.com: I have prepared a testcase that I can use to replicate the issue all the time. I am running Mac OS 10.8.2 (ML) and I tested this case with both CMake/CPack 2.8.10.1 and 2.8.9. The command issued is simply: cmake -G Xcode You can find the test

Re: [CMake] Problem with Visual Studio 2010, Windows 7 64bit

2012-11-27 Thread David Cole
Are you using an Express edition of VS without an SDK installed? If so, install an SDK and try again from a clean build directory. If not, we'll need more information. VS 2010 on Windows 7 works great for me, even for a VTK build tree... On Tue, Nov 27, 2012 at 3:48 PM, David Doria

[CMake] CMake 2.8.10.2 available for download

2012-11-27 Thread David Cole
And a few more... Here are some important bug fixes to the CMake 2.8.10 release. Thanks going out to Alex Neundorf, Brad King, Rolf Eike Beer, (and me), … fixes for the following problems are now available in a 2.8.10.2 bug fix release. The change log page for this bug-fix only release is here:

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Paolo Ciccone
Hi Eric. You nailed it! Those characters got inserted when I copies and pasted the names of the variables fromt the CPack wiki. Once removed everything works perfectly. Fantastic! Thank you a million. --- Paolo Ciccone www.preta3d.com www.paolociccone.com On Tue, Nov 27, 2012 at 1:34 PM, Eric

[CMake] Unspecified arguments to CMake script

2012-11-27 Thread James Bigler
Is it possible to have an unbounded number of arguments to a script processed by CMake using the -P argument? I need to specify a variable number of arguments, so using -D isn't going to help much. -- Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [CMake] CPACK: configured variables in CMake file are ignored

2012-11-27 Thread Paolo Ciccone
Yes. I use Sublime Edit 2 for all my work, Xcode is used just to compile the project. I'll look into that and possibly contact the developer. Showing the foreign chars would have saved me a few hours and avoided pestering the mailing list about such trivial issue :) Thanks again. --- Paolo

Re: [CMake] Unspecified arguments to CMake script

2012-11-27 Thread David Cole
It's possible, but it's probably not advisable. The command line argument handling code in CMake is, shall we say, a smidge on the fragile side. It would be better to stream your arguments into a file, perhaps one arg per line in a text file, and then use CMake's file reading capabilities to

[CMake] swig - how do I set compile flags on the generated files?

2012-11-27 Thread Miller Henry
Our normal coding standards requires zero warnings with -wall -wextra (gcc/clang), but often the swig generated file has warnings. We don't mind turning these warnings off for the generated file, but we still want to see them for other files in the project. However I'm stumped on how to do

Re: [CMake] swig - how do I set compile flags on the generated files?

2012-11-27 Thread Nick Overdijk
Aren't you the one generating those names? http://www.swig.org/Doc1.3/Introduction.html#Introduction%5Fbuild%5Fsystem On 2012-28-11, at 01:11:24 , Miller Henry wrote: Our normal coding standards requires zero warnings with –wall –wextra (gcc/clang), but often the swig generated file has

Re: [CMake] swig - how do I set compile flags on the generated files?

2012-11-27 Thread Nick Overdijk
I had a derp, sorry about that. Obviously you don't, hah. You can put all the swig-generated files in a directory, and then perhaps set the properties with a glob? On 2012-28-11, at 02:22:00 , Nick Overdijk wrote: Aren't you the one generating those names?

[CMake] VS2012 Platform Toolset

2012-11-27 Thread Kamal Mansouri
Hello, With Visual Studio 2012 Update 1 released, I am hoping to build a C++ project to supportWindows XP. Is there a way to use CMake to generate a project that targets Windows XP?Basically CMake would need to generate a project file that uses: Platform Toolset = Visual Studio 2012 - Windows

Re: [CMake] Problem with Visual Studio 2010, Windows 7 64bit

2012-11-27 Thread Andrew Maclean
I have no problems with Visual Studio 2010 or VS 2010 Express. The following link may help: http://www.vtk.org/Wiki/VTK/GitMSBuild There is no need to set the VS 64-bit command prompt and run cmake-gui from inside it. I generally run cmake-gui by just clicking on the icon. Try running cmake-gui

Re: [CMake] Problem with Visual Studio 2010, Windows 7 64bit

2012-11-27 Thread Andrew Maclean
VS 2012 will not cause a problem I have both VS 2010 and VS2012 (both express) installed but am waiting for QT to be able to built for VS2012 before moving to VS2012 express. Regards Andrew -- Forwarded message -- From: David Doria daviddo...@gmail.com To: David Cole

Re: [CMake] Problem with Visual Studio 2010, Windows 7 64bit

2012-11-27 Thread Petr Kmoch
Hi all, VS 2012 and VS 2010 installed together *can* actually cause problems (it certainly did for me). I was getting exactly the same error as David Doria, and I had to install a service pack for 2010 to overcome it. See e.g.

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1073-gf272ccd

2012-11-27 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 f272ccd54070949f5f57c00a1566677e627002c8 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1078-g49d1822

2012-11-27 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 49d1822f8fa294512c74dc1b3d9ffceef23bef46 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1080-g1026cf2

2012-11-27 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 1026cf2f724b1ad7cc712de53e14ab636318b07d (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1087-ga7423f9

2012-11-27 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 a7423f9d55fb0f40318096d3b106d5bcad161115 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1090-g3e40be7

2012-11-27 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 3e40be7854187a1d81deaf4723ef3d6c8fa8d210 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1095-g18a73fc

2012-11-27 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 18a73fce79476bdd5668c6917df358ef61853f7d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-203-g7e5f1e2

2012-11-27 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 7e5f1e2cbd7469502087302d1bc7fafd9fa6 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-205-g805c0f3

2012-11-27 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 805c0f3f899413efe466eee06f46a1b4a3cb285a (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-208-gf30393e

2012-11-27 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 f30393e28a49fe4d4e29d41cfc6b2a663ea691c0 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-210-g9e395fe

2012-11-27 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 9e395feb466145617376eae4013755f684be3f80 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-212-g4046fc0

2012-11-27 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 4046fc01041e1bd9ece928bd77d494c38cc0c70a (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-215-g9c48fc7

2012-11-27 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 9c48fc7213c2a7426a2c1713653484aa58beebcb (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-219-g9f83203

2012-11-27 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 9f832033d587d4f98b6a1b70674778acd91b8146 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-221-gccf23f2

2012-11-27 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 ccf23f295cb675cded7878273e932723cf411c61 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-223-g370a7c5

2012-11-27 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 370a7c5f8ca8fe3bb1a1889bdab7e86e78b954c2 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-225-gdcb3701

2012-11-27 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 dcb3701d76810b2bb7a4f498e4fe2fd925a57028 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-228-gd5adbbc

2012-11-27 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 d5adbbcf9cf7443392a38eb980886833de104826 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-232-g5f30a56

2012-11-27 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 5f30a56f290acd7abd805e32f7537957ae78377d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-238-gba139c5

2012-11-27 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 ba139c5722c338e30f77aa0d09d17da180474f32 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1111-g8d89154

2012-11-27 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 8d8915423b84b6715829cc8725b9b1fece63a729 (commit) via

[Cmake-commits] CMake branch, release, updated. v2.8.10.1-9-g1d3b35f

2012-11-27 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, release has been updated via 1d3b35fd8a59c6f987b4caab17330955dbaf32bc (commit) via

[Cmake-commits] CMake branch, maint, updated. v2.8.10.2

2012-11-27 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, maint has been updated via 1d3b35fd8a59c6f987b4caab17330955dbaf32bc (commit) via

[Cmake-commits] CMake annotated tag, v2.8.10.2, created. v2.8.10.2

2012-11-27 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 annotated tag, v2.8.10.2 has been created at 32a77ec2a632804359b013e46acab98bdc61c2a0 (tag) tagging

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1104-g6692827

2012-11-27 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 6692827ddf62611acf96feb896c3a8ac00f5c7a8 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.2-230-g1ed0464

2012-11-27 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index be8259d..a7afa52 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 10) -set(CMake_VERSION_TWEAK 20121127