[CMake] help plz!

2010-04-26 Thread sarah keith
Hi, ... well i am trying to compile flight gear flight simulator. . i have compiled most of the libraries , but this one is rele causing me problems.. i am using cygwin. and i have to compile osg 2.8.3.. my cmake version is 2.6.0-1 and it is particularly built for cygwin (i guess) .. bill hoff

Re: [CMake] VS2010 bug, when output executable has '.' characters

2010-04-26 Thread Jarl Lindrud
On Tue, Apr 27, 2010 at 9:49 AM, Michael Hertling wrote: > On 04/26/2010 04:09 AM, Jarl Lindrud wrote: > > > > I think I've found another bug in the VS2010 generator. I've generated a > > VS2010 solution from this CMakelists.txt: > > > > PROJECT(AAA) > > ADD_LIBRARY(AAA.BBB.CCC SHARED File1.cpp) >

Re: [CMake] VS2010 bug, when output executable has '.' characters

2010-04-26 Thread Michael Hertling
On 04/26/2010 04:09 AM, Jarl Lindrud wrote: > > I think I've found another bug in the VS2010 generator. I've generated a > VS2010 solution from this CMakelists.txt: > > PROJECT(AAA) > ADD_LIBRARY(AAA.BBB.CCC SHARED File1.cpp) > > , but when I build it, I find that the output file is named AAA.

[CMake] Fwd: stopping on errors?

2010-04-26 Thread Alexander Neundorf
Hi, below you can see the output from a cmake run, where a parsing error occurred, still cmake continues processing after this. Are there reasons why this is so instead of immediately terminating ? I think David has a point here. Alex -- Forwarded Message -- Subject: stopping

Re: [CMake] Apply FIND_PACKAGE_HANDLE_STANDARD_ARGS() on COMPONENTS

2010-04-26 Thread Alexander Neundorf
On Sunday 25 April 2010, Michael Hertling wrote: > On 04/22/2010 09:55 PM, Alexander Neundorf wrote: > > On Thursday 22 April 2010, Michael Hertling wrote: > >> On 04/21/2010 09:13 PM, Alexander Neundorf wrote: > >>> On Tuesday 20 April 2010, Michael Hertling wrote: > Dear CMake community, dea

Re: [CMake] CPack PackageMaker Q

2010-04-26 Thread Alexander Neundorf
On Sunday 25 April 2010, Robert Bielik wrote: > It seems that the CPack PackageMaker generator doesn't (by default) follow > the guidelines (seemingly important) of PackageMaker, see f.i. > http://s.sudre.free.fr/Stuff/PackageMaker_Howto.html . Is there some > resource on how to get CPack to do thi

Re: [CMake] Unit tests, but not CTest

2010-04-26 Thread Alexander Neundorf
On Friday 23 April 2010, Magnus Therning wrote: > 2010/4/23 Adolfo Rodríguez Tsouroukdissian : > > On Fri, Apr 23, 2010 at 5:56 PM, Magnus Therning > > > > wrote: > >> On Fri, Apr 23, 2010 at 16:35, Tyler Roscoe wrote: > >> > On Fri, Apr 23, 2010 at 04:24:06PM +0100, Magnus Therning wrote: > >>

Re: [CMake] Some questions about dependencies

2010-04-26 Thread Alexander Neundorf
On Friday 23 April 2010, Magnus Therning wrote: > Does INSTALL( FILES ... ) have the same limitations regarding the location > of the commands that generate the files in question as ADD_CUSTOM_COMMAND( > ... DEPENDS ... ) has? > > That is, proper dependencies for the files given to INSTALL will onl

Re: [CMake] ctest & peak memory usage

2010-04-26 Thread Alexander Neundorf
On Friday 23 April 2010, David Cole wrote: ... > VTK testing uses this technique to send images to the CDash server when an > image comparison test fails. > > You can see an example of that here: > http://www.cdash.org/CDash/testDetails.php?test=51100873&build=591789 Cool, didn't know that I can s

[CMake] Bullseye test coverage problem

2010-04-26 Thread Scott Fowler
I've just downloaded Bullseye and am having some issues when running the Experimental build target. My project consists of a main application and a couple unit test buildables, which are executed via CTest during the main application build. I can rebuild by main application just fine and cover

Re: [CMake] Adding to rpath through cmake

2010-04-26 Thread Michael Hertling
On 04/26/2010 08:35 AM, Michael Darling wrote: > Hi, > > I've been trying to figure out how to append another directory to the -rpath > sent to the linker through cmake. > > I have a yum-installed version of stdlibs in /usr/lib64, and a svn source > built one in /usr/local/lib64. I need the newe

Re: [CMake] VS2010 problem with upper case CPP extension

2010-04-26 Thread Jarl Lindrud
On 4/25/2010 9:47 PM, Jarl Lindrud wrote: Advice: SET_SOURCE_FILES_PROPERTIES(File2.CPP PROPERTIES LANGUAGE CXX) or go with lower case... ;) Regards, Michael OK, for now I've worked around this using SET_SOURCE_FILES_PROPERTIES... Thanks. I've reported this as a bug (http://www.cmake

Re: [CMake] VS2010 bug, when output executable has '.' characters

2010-04-26 Thread Jarl Lindrud
On Mon, 26 Apr 2010 22:13:49 +1000, J Decker wrote: If you don't want the default suffix shouldn't you set target property SUFFIX? Not sure what you mean... I want the project output executable to have the default suffix "exe". The problem is that cmake has chopped off part of the proj

Re: [CMake] Why is this custom command run twice?

2010-04-26 Thread Aaron_Wright
Thanks for checking on this Brad. - Aaron Wright From: Brad King To: aaron_wri...@selinc.com Cc: cmake@cmake.org, Michael Wild Date: 04/23/2010 11:59 AM Subject: Re: [CMake] Why is this custom command run twice? Sent by: cmake-boun.

Re: [CMake] VS2010 problem with upper case CPP extension

2010-04-26 Thread Bill Hoffman
On 4/25/2010 9:47 PM, Jarl Lindrud wrote: Advice: SET_SOURCE_FILES_PROPERTIES(File2.CPP PROPERTIES LANGUAGE CXX) or go with lower case... ;) Regards, Michael OK, for now I've worked around this using SET_SOURCE_FILES_PROPERTIES... Thanks. I've reported this as a bug (http://www.cmake.org

Re: [CMake] Is "full language support" possible?

2010-04-26 Thread Alan W. Irwin
On 2010-04-26 13:33+0200 Michael Hertling wrote: On 04/26/2010 08:00 AM, Magnus Therning wrote: What is needed to make it possible to write project( camlzip MyLanguage ) and then have all the standard macros, add_libary() etc, do the correct thing for MyLanguage? Have a look at

Re: [CMake] VS2010 bug, when output executable has '.' characters

2010-04-26 Thread J Decker
If you don't want the default suffix shouldn't you set target property SUFFIX? On 4/25/10, Jarl Lindrud wrote: > > I think I've found another bug in the VS2010 generator. I've generated a > VS2010 solution from this CMakelists.txt: > > PROJECT(AAA) > ADD_LIBRARY(AAA.BBB.CCC SHARED File1.cpp) > >

Re: [CMake] Is "full language support" possible?

2010-04-26 Thread Michael Hertling
On 04/26/2010 08:00 AM, Magnus Therning wrote: > What is needed to make it possible to write > > project( camlzip MyLanguage ) > > and then have all the standard macros, add_libary() etc, do the correct thing > for MyLanguage? Have a look at .

[CMake] ctest and files organization

2010-04-26 Thread AKHRES Nader
Hello, just wonder where you put your unitary test? What's is usual? in /src/unit_test? Nad ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic a