[cmake-developers] [CMake 0011421]: FindPackage(Qt3 REQUIRED) does not fail if Qt3 is not found

2010-11-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=11421 == Reported By:Rolf Eike Beer Assigned To:

Re: [cmake-developers] Fixing ProcessorCount.cmake

2010-11-09 Thread David Cole
On Mon, Nov 8, 2010 at 3:46 PM, Bill Hoffman bill.hoff...@kitware.com wrote: On 11/8/2010 3:30 PM, Rolf Eike Beer wrote: Am Montag, 8. November 2010 schrieb Bill Hoffman: On 11/8/2010 1:55 PM, Rolf Eike Beer wrote: Am Montag, 8. November 2010 schrieb David Cole: Hi Rolf, Can you update

Re: [cmake-developers] Fixing ProcessorCount.cmake

2010-11-09 Thread Alexander Neundorf
On Tuesday 09 November 2010, David Cole wrote: On Mon, Nov 8, 2010 at 3:46 PM, Bill Hoffman bill.hoff...@kitware.com wrote: On 11/8/2010 3:30 PM, Rolf Eike Beer wrote: Am Montag, 8. November 2010 schrieb Bill Hoffman: On 11/8/2010 1:55 PM, Rolf Eike Beer wrote: Am Montag, 8. November

Re: [cmake-developers] Fixing ProcessorCount.cmake

2010-11-09 Thread David Cole
On Tue, Nov 9, 2010 at 5:45 AM, David Cole david.c...@kitware.com wrote: On Mon, Nov 8, 2010 at 3:46 PM, Bill Hoffman bill.hoff...@kitware.com wrote: On 11/8/2010 3:30 PM, Rolf Eike Beer wrote: Am Montag, 8. November 2010 schrieb Bill Hoffman: On 11/8/2010 1:55 PM, Rolf Eike Beer wrote: Am

[cmake-developers] [CMake 0011429]: FindGTK2 does not find libraries built for Visual Studio 2010

2010-11-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=11429 == Reported By:Vincent Levesque Assigned To:

[cmake-developers] [CMake 0011430]: FindBullet doesn't find header files installed by Bullet = 2.77

2010-11-09 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=11430 == Reported By:Philip Lowman Assigned To:

Re: [CMake] make test missing

2010-11-09 Thread Marcel Loose
On Mon, 2010-11-08 at 18:28 -0800, Alan W. Irwin wrote: On 2010-11-09 02:52+0100 Michael Hertling wrote: On 11/08/2010 10:03 PM, Jochen Issing wrote: Hi list, I tried to add ctest to my project and did this by adding ENABLE_TESTING() and several ADD_TEST(...) to my CMakeLists.txt file.

[CMake] MIDL and Visual Studio 10 with |CMake 2.8.3

2010-11-09 Thread David Hunter
I have a project containing a few MIDL files that has been working fine using the Visual Studio 9 2008 generator. I have been migrating the project over to Visual Studio 2010 which includes using the cmake Visual Studio 10 generator. However the resultant Visual Studio 2010 files do not seems to

Re: [CMake] 2.8.3 fortran regression or how to find configure problem

2010-11-09 Thread Brad King
On 11/8/2010 3:54 PM, Allen D Byrne wrote: The projects do differ in the VFFortranCompilerTool option of the project file DEBUG: AdditionalOptions= /W1 /libs:dll /threads /dbglibs instead of AdditionalOptions= /dbglibs RELEASE: AdditionalOptions= /W1 /libs:dll /threads instead

Re: [CMake] Bug fix requests for the *next* release of CMake...

2010-11-09 Thread Philip Lowman
On Sun, Nov 7, 2010 at 8:29 PM, Luigi Calori l.cal...@cineca.it wrote: On 07/11/2010 21.01, Philip Lowman wrote: On Fri, Nov 5, 2010 at 12:08 PM, Luigi Calori l.cal...@cineca.it wrote: +1 for FindBoost support to CMakeified version of Boost at

Re: [CMake] 2.8.3 fortran regression or how to find configure problem

2010-11-09 Thread Bill Hoffman
On 11/9/2010 8:03 AM, Brad King wrote: Taking out the new AdditionalOptions= /W1 /libs:dll /threads allowed the project to succeed. The regression was introduced here: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=20f49730 So, you should be able to get a temporary fix by reverting

Re: [CMake] make test missing

2010-11-09 Thread Jochen Issing
Hi All, sorry for taking so much time for this wimpy problem. I think I found the issue and it's simple as always. See some small comments inline On 09.11.2010, at 03:28, Alan W. Irwin wrote: On 2010-11-09 02:52+0100 Michael Hertling wrote: On 11/08/2010 10:03 PM, Jochen Issing wrote: Hi

Re: [CMake] cmake my_BouncyBall

2010-11-09 Thread Michael Hertling
On 11/07/2010 03:37 PM, luxInteg wrote: On Sunday 07 November 2010 11:34:47 Richard Wackerbarth wrote: First let me suggest that you word your request in a more complete manner. What does not work? cant get an executable generated because the 'COMMAND' syntax is incorrect so could you

Re: [CMake] header files with visual studio

2010-11-09 Thread Oliver kfsone Smith
Eric Noulard said the following on 11/6/2010 6:20 AM: Initially it may be a pain to list them but after a while its generally better to manually keep track of file (dis)appearing in your source tree. (which is usually what you do when using an IDE without CMake) I.e. if those files are/were

Re: [CMake] header files with visual studio

2010-11-09 Thread Oliver kfsone Smith
Michael Hertling said the following on 11/6/2010 7:39 AM: stored in the ${CMAKE_BINARY_DIR}/filelist.dat script as an assignment to the variable FILELIST. Subsequently, this filelist.dat is read via INCLUDE(), so CMake keeps track of it, i.e. changing the filelist.dat results in a rebuild.

[CMake] Make clean in VS can't delete read only files

2010-11-09 Thread James Bigler
I have a build rule that copies files from the source tree to the build tree: foreach( script ${scripts} ) set( src ${CMAKE_CURRENT_SOURCE_DIR}/${script} ) set( dest ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${script} ) list( APPEND dest_files ${dest} ) add_custom_command( OUTPUT ${dest}

[CMake] Include Directories Cleanup/Remove Prior Entries

2010-11-09 Thread Jeremy Torres
I have a question regarding removing prior entries from include_directories. Specifically, in a CMakeLists.txt, I have several targets. For example: # target 1 include_directories(x y z) add_executable(my_exe ...) #target 2 include_directories(a b c) add_executable(my_exe2 ...) #target 3

Re: [CMake] Make clean in VS can't delete read only files

2010-11-09 Thread Michael Hertling
On 11/10/2010 01:17 AM, James Bigler wrote: I have a build rule that copies files from the source tree to the build tree: foreach( script ${scripts} ) set( src ${CMAKE_CURRENT_SOURCE_DIR}/${script} ) set( dest ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${script} ) list( APPEND dest_files

[Cmake-commits] CMake branch, next, updated. v2.8.3-563-gcc0b80a

2010-11-09 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 cc0b80a4522d02572c88c18e59ae5ceb190db00e (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-8-gd8e0bfa

2010-11-09 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 d8e0bfa7863f817cd226eca65626525f6b1d1f57 (commit) from

[Cmake-commits] CMake branch, next, updated. v2.8.3-565-g70243a4

2010-11-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, next has been updated via 70243a4a00785ac8ed4b4a2470416cefa21ba89e (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-14-g5965ff5

2010-11-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, master has been updated via 5965ff51127c7baaa23b06df510c8adcc5435880 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-18-g9692d5a

2010-11-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, master has been updated via 9692d5a2b6f706f8b3cfd31fcb5b47277961ccab (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-20-g1774622

2010-11-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, master has been updated via 1774622487bde44967d6c3181780e6705acf1b9d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-22-g8eaf172

2010-11-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, master has been updated via 8eaf17227993dd736e1ff27e373557ced07d8351 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-24-gb5f9be1

2010-11-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, master has been updated via b5f9be1d03deb7be87a615e8d3bb89ecf341e288 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-27-g01decaf

2010-11-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, master has been updated via 01decafc9719030c3970ddd4861b7819f79adff6 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-29-ge3b1dc1

2010-11-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, master has been updated via e3b1dc171d2a71439830b1656bad5349171c17f4 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-32-gc8f6c33

2010-11-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, master has been updated via c8f6c33ec8a9bb9372bf9c800699e6cfd19533b7 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-34-g0c12616

2010-11-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, master has been updated via 0c1261658b759cbe2b448849f3fd22240524cacf (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-40-g385b681

2010-11-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, master has been updated via 385b681138b5e185bf50e4ee1d54f3b57e229fdd (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-43-g7456714

2010-11-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, master has been updated via 745671441d3bcecac171334da350e92ab8b5f7b9 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-583-g7878041

2010-11-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, next has been updated via 78780416750acbe3b551e64df9dc5fa4e6aa0d1d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-44-gc5762cf

2010-11-09 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 c5762cf58c70f82479586e3938a85e60f9474a6c (commit) from