[CMake] Tag Variable OBJECTS

2010-04-21 Thread Matthias Goesswein
Hello! My libarian-tool needs a flag before each object file: e.g. libarian -a file1.o -a file2.o -a file3.o library.a CMake provides the OBJECTS tag variable for use within the rule variable of the libarian, but i didn't fond a way to insert the -a flags before each object file. Is there

Re: [CMake] LaTex Find Module available

2010-04-21 Thread Ryan Pavlik
You might be interested in this module: http://github.com/rpavlik/vrpn/blob/master/vrpn/cmake/DoxygenTargets.cmake Ryan On 4/20/10 11:21 AM, Michael Jackson wrote: Of course you are right. I just scanned the directory too fast. Thanks. I am taking some ideas from the UseLatex.cmake file as I

Re: [CMake] Tag Variable OBJECTS

2010-04-21 Thread Alexander Neundorf
On Wednesday 21 April 2010, Matthias Goesswein wrote: Hello! My libarian-tool needs a flag before each object file: e.g. libarian -a file1.o -a file2.o -a file3.o library.a CMake provides the OBJECTS tag variable for use within the rule variable of the libarian, but i didn't fond a way

[CMake] Creating a Mac bundle for an app dependent on Qt and ParaView

2010-04-21 Thread Ben Medina
Hello all, I am trying to package an app on the Mac into an app bundle. This app depends on Qt and ParaView, so I have code like this: # directories to look for dependencies: Qt, ParaView/VTK set(DIRS ${QT_LIBRARY_DIRS};${PARAVIEW_LIBRARY_DIRS}) install(CODE

Re: [CMake] Apply FIND_PACKAGE_HANDLE_STANDARD_ARGS() on COMPONENTS

2010-04-21 Thread Alexander Neundorf
On Tuesday 20 April 2010, Michael Hertling wrote: Dear CMake community, dear CMake developers, ... There's another aspect related to this I'd like to comment on: During the abovementioned considerations on the bug tracker and the mailing list, the question has arisen if it's reasonable to set

[CMake] ctest peak memory usage

2010-04-21 Thread Clinton Stimpson
Hi, Can ctest report peak memory usage like it reports time and other measurements? Thanks, Clint ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [CMake] ctest peak memory usage

2010-04-21 Thread David Cole
It's own peak memory usage, or memory usage of spawned tests? Neither right now. It's not a bad idea... and if somebody came up with a way to measure the quantity of interest, it would be easy to report it to CDash as a measured value. But right now: nada. On Wed, Apr 21, 2010 at 4:50 PM,

Re: [CMake] I'm confused with Find*.cmake and *-config.cmake

2010-04-21 Thread Michael Hertling
On 04/20/2010 09:40 PM, Benoit Thomas wrote: On 2010-04-20 03:27, Michael Hertling wrote: On 04/19/2010 10:07 PM, Benoit Thomas wrote: I'm using an external library which is already compiled. I have wrapped the library in a MyLib.cmake and use it in cmake as an imported library. It

[CMake] Why is this custom command run twice?

2010-04-21 Thread Aaron_Wright
I'm trying to do something a little weird, and I'm almost there but not quite. I'm trying to generate a file and then run a command based on that file. I only want the command to run when the file changes and thus the generated file changes. Instead the first build I get both custom commands

Re: [CMake] ctest amp; peak memory usage

2010-04-21 Thread Matt McCormick
Clinton Stimpson clin...@... writes: Hi, Can ctest report peak memory usage like it reports time and other measurements? Thanks, Clint ___ You could have ctest run valgind's massif tool. An example can be found here:

Re: [CMake] Tag Variable OBJECTS

2010-04-21 Thread Matthias Goesswein
Am 21.04.2010 18:56, schrieb Alexander Neundorf: On Wednesday 21 April 2010, Matthias Goesswein wrote: Hello! My libarian-tool needs a flag before each object file: e.g. libarian -a file1.o -a file2.o -a file3.o library.a CMake provides theOBJECTS tag variable for use within the rule