[cmake-developers] [CMake 0013623]: MSBuild.exe doesn't see a project in solution (MSVC 2012 express)

2012-10-31 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13623 == Reported By:Michael Broutin Assigned To:

[cmake-developers] Fwd: Bug#691948: cmake: Insists on using non-existent (when cross-compiling) -rdynamic flag

2012-10-31 Thread Bill Hoffman
FYI Original Message Subject: Bug#691948: cmake: Insists on using non-existent (when cross-compiling) -rdynamic flag Resent-Date: Wed, 31 Oct 2012 16:09:02 + Resent-From: Sam Morris s...@robots.org.uk Resent-To: debian-bugs-d...@lists.debian.org Resent-CC: Modestas

[cmake-developers] FOSDEM CrossDesktop DevRoom 2013 - Call for Talks

2012-10-31 Thread Pau Garcia i Quiles
Hello, The Call for Talks for the CrossDesktop DevRoom at FOSDEM 2013 is now officially open. Please do not wait till the last minute! --8--- * FOSDEM is one of the largest gatherings of Free Software contributors in the world and happens each February in Brussels (Belgium). One of the tracks

Re: [cmake-developers] patch for cmake that adds a new timestamp command

2012-10-31 Thread David Cole
Has anybody tried this anywhere else? I'm going to merge it to 'next' tomorrow, so that it will get tested on the dashboards after that. Just curious if there are any other known problems with it that I should squash in before doing that... Thanks, David On Tue, Oct 16, 2012 at 1:57 PM, David

[cmake-developers] CMake 2.8.10 available for download

2012-10-31 Thread David Cole
On behalf of myself, Ken, Bill, Brad, Alex, Eike, Steve, Eric, Zach, Ben and the rest of the CMake team from all around the world, we are pleased to announce that CMake 2.8.10 is now available for download at: http://www.cmake.org/files/v2.8/?C=M;O=D It is also available from the usual

Re: [CMake] Automoc for ui files?

2012-10-31 Thread Andreas Pakulat
Hi, On Wed, Oct 31, 2012 at 12:02 AM, David Doria daviddo...@gmail.com wrote: I just learned about automoc, and it is fantastic! I have been able to get rid of all of my manual QT4_WRAP_CPP calls. Is there a similar way to get rid of my QT4_WRAP_UI calls? They are equally as bulky to write

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Laszlo Papp
This is the python statement I am trying to execute on my Windows box just in case: subprocess.call([cmake, -GNMake Makefiles JOM, -DCMAKE_MODULE_PATH= + os.environ[CMAKE_MODULE_PATH].replace(\\, /), os.path.pardir if len(sys.argv) == 1 else sys.argv[1]]) Laszlo On Tue, Oct 30, 2012 at 4:31 PM,

Re: [CMake] Automoc for ui files?

2012-10-31 Thread Rolf Eike Beer
Am , schrieb Andreas Pakulat: Hi, On Wed, Oct 31, 2012 at 12:02 AM, David Doria daviddo...@gmail.com wrote: I just learned about automoc, and it is fantastic! I have been able to get rid of all of my manual QT4_WRAP_CPP calls. Is there a similar way to get rid of my QT4_WRAP_UI calls? They

Re: [CMake] Automoc for ui files?

2012-10-31 Thread Christian Ehrlicher
Am 31.10.2012 10:37, schrieb Rolf Eike Beer: Am , schrieb Andreas Pakulat: Hi, On Wed, Oct 31, 2012 at 12:02 AM, David Doria daviddo...@gmail.com wrote: I just learned about automoc, and it is fantastic! I have been able to get rid of all of my manual QT4_WRAP_CPP calls. Is there a similar

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Laszlo Papp
I have also tried to enable the --debug-trycompile, but did not help for me. This is the CMakeError.log: Compilation of the C compiler identification source CMakeCCompilerId.c did not produce an executable in C:/foobar/build/CMakeFiles/CompilerIdC. Compilation of the C compiler identification

[CMake] modular builds / add_subdirectory for external directory / ExternalProject_Add / RHEL6

2012-10-31 Thread Derrick Karimi
Hello, I am trying to create a modular development environment. My goal is to have different source modules in separate source control projects. Sometimes there will be dependencies between these modules. I also will be scooping in 3rd party projects and placing some kind of wrapper build

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Bill Hoffman
On 10/31/2012 6:19 AM, Laszlo Papp wrote: I have also tried to enable the --debug-trycompile, but did not help for me. This is the CMakeError.log: Can you back up a few steps? Does CMake work from the command line without python on a simple project? Does it work with nmake or any other

[CMake] How to generate a STATIC Library using ExternalProject_Add

2012-10-31 Thread Marshall, Rob
Hi, I am using ExternalProject_Add to build websocketpp. The build is successful and libwebsocketpp.a is generated. But it appears to be generated as a UTILITY rather than a STATIC. How can I configure ExternalProject_Add to build websocketapp as STATIC? When I try and link in websocketpp with

Re: [CMake] How to generate a STATIC Library using ExternalProject_Add

2012-10-31 Thread David Cole
Use the full path to the file libwebsocketpp.a in your target_link_libraries call instead of websocketpp HTH, David On Wed, Oct 31, 2012 at 11:51 AM, Marshall, Rob r...@qti.qualcomm.com wrote: Hi, I am using ExternalProject_Add to build websocketpp. The build is successful and

Re: [CMake] How to generate a STATIC Library using ExternalProject_Add

2012-10-31 Thread Marshall, Rob
I am not sure if the link worked correctly because the websocketpp symbols seem to be missing. When MyApp is linking in boost and websocketpp Linking CXX executable MyApp ../../lib/MyServer/libMyServer.a(MyServerWebsocketServer.cpp.o): In function

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Laszlo Papp
Does CMake work from the command line without python on a simple project? No. Does it work with nmake or any other generators? No. Laszlo -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Bill Hoffman
On 10/31/2012 1:07 PM, Laszlo Papp wrote: Does CMake work from the command line without python on a simple project? No. Does it work with nmake or any other generators? No. Laszlo What is in CMakeError.log and CMakeOutput.log? -- Bill Hoffman Kitware, Inc. 28 Corporate Drive Clifton

Re: [CMake] JOM Makefile generation issue

2012-10-31 Thread Laszlo Papp
I think it is my stupidity again as usual. :D $myrepository/tools/bin/cl.exe caused it because that was found due to a wrong PATH handling. I have inserted that before the rest instead of appending. The local cl.exe was preferred from the repository and cmake seems to have been unhappy about that

Re: [CMake] Should automoc automatically add CMAKE_CURRENT_BINARY_DIR to the include_directories?

2012-10-31 Thread Stephen Kelly
David Doria wrote: When using automoc, I still have to do: include_directories(${CMAKE_CURRENT_BINARY_DIR}) so that the compiler can find the MOCed files that get created in the build directory. Should this be done automatically so there is one less thing the user has to worry about?

[CMake] How to use file(WRITE... to write the literal string $'\r' to a file

2012-10-31 Thread Alan W. Irwin
After a lot of thrashing around I finally discovered that file(WRITE filename \$'\\r') worked to write the literal string $'\r' to a file, i.e, so that the od -a result was $ ' \ r ' Is there an easier way to write this literal string to a file that I missed? Alan

Re: [CMake] How to use file(WRITE... to write the literal string $'\r' to a file

2012-10-31 Thread Matthew Woehlke
On 2012-10-31 19:34, Alan W. Irwin wrote: After a lot of thrashing around I finally discovered that file(WRITE filename \$'\\r') worked to write the literal string $'\r' to a file, i.e, so that the od -a result was $ ' \ r ' Is there an easier way to write this literal string to a

Re: [CMake] How to use file(WRITE... to write the literal string $'\r' to a file

2012-10-31 Thread David Cole
The only character you need to escape in the whole sequence is the backslash. You only have to escape a $ if it precedes a { to disambiguate from a variable dereference. This works for me: $ cat w.cmake file(WRITE w.txt $'\\r') $ cmake -P w.cmake $ cat w.txt $'\r' HTH, David On Wed, Oct

[CMake] CMake 2.8.10 available for download

2012-10-31 Thread David Cole
On behalf of myself, Ken, Bill, Brad, Alex, Eike, Steve, Eric, Zach, Ben and the rest of the CMake team from all around the world, we are pleased to announce that CMake 2.8.10 is now available for download at: http://www.cmake.org/files/v2.8/?C=M;O=D It is also available from the usual

[Cmake-commits] CMake branch, release, updated. v2.8.9-607-gc36622a

2012-10-31 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 c36622a45f55b296d0891d94a91372c320768be0 (commit) via

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

2012-10-31 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 has been created at 73b022950c86b200d86c78f5808c5cbbe8089cb7 (tag) tagging

[Cmake-commits] CMake branch, master, updated. v2.8.10-1-gc3b82f6

2012-10-31 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 c3b82f67703f00c89a223043e9e48a6b3e1c4aac (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-635-ga756e71

2012-10-31 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, next has been updated via a756e7124b391a66762658168a326e8ce5ab95bb (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-637-g6541782

2012-10-31 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 65417829db15ad8fc2ce180d23589bacaed4f8cf (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-639-g698d877

2012-10-31 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 698d8779ee06b2f973fd9938987e59bc11cf22b4 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-641-g3a39804

2012-10-31 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 3a39804fef4ff652a6dc7e90f2fad86a8eb0cbe8 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-6-g6df05b9

2012-10-31 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 6df05b93b15eaf6daa0699095e5a250888ef8d79 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-14-g634c8bf

2012-10-31 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 634c8bf49fc531e3ac2f9ea4e7ef8fa51d73d088 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-16-g0f27350

2012-10-31 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 0f2735019a0c22bc12629c6f57b4673bade5c5cd (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-18-gaf304a1

2012-10-31 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 af304a1c6a510dacb3b5a480d8480fa5bf4e24f8 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-20-g72632f8

2012-10-31 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 72632f885c904d8d76de47f284086eea02c4567e (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-22-g0b9dac6

2012-10-31 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 0b9dac6cbc15acfb8df01e5b6dd5284c4a42fe9a (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-24-gb3927bc

2012-10-31 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 b3927bce78103136d671c14cdd6de9d3ddf11e9c (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-26-gbd394d4

2012-10-31 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 bd394d42e6adda56d36236b33b61338e76e810ed (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-28-gd8233e5

2012-10-31 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 d8233e58372e18200a83e66732bc7918aadb06f4 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-31-g2c3bfb6

2012-10-31 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 2c3bfb6876835200cf308fbe175161c68735f4a1 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-33-gfb190df

2012-10-31 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 fb190dfb9aded5468fe2c1a0a38d0c158c0f1225 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-36-g3d51262

2012-10-31 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 3d51262c0e22a0d28eecaaf4ae43a31d38f597e3 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-39-ge7af22f

2012-10-31 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 e7af22f6c3f7441dd528c1b0e89c3aee041e07c4 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-41-ge2006ce

2012-10-31 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 e2006ce5a9a0e8d914cd2930618d587b5bf1a30b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-43-g4129397

2012-10-31 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 4129397b8e6778426d1ffe4193cbf1c5fe4f499b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-45-g99c95d5

2012-10-31 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 99c95d5e1a29c33c3e138e6299554b6b7fef6b44 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-658-g28ce089

2012-10-31 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, next has been updated via 28ce08920de4bc0c04826935c297f17b4004 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-662-g567a280

2012-10-31 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, next has been updated via 567a280cdbcd323b3652fa0313367367f58b8c62 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10-664-gdf1c5dc

2012-10-31 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, next has been updated via df1c5dcc3c9630d7d39276d917e8a89dcef9ab41 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10-46-gf5b3736

2012-10-31 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 9920b5b..d67df65 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 20121031