Re: [CMake] Complicated dependency handling between linux & windows

2013-06-11 Thread Stefan Reuschl
2013/6/10 Robert Dailey > One thing I have setup on my CMake script framework on Windows is an > alias system. During configure, I tell CMake where my package > repository root is on a windows share. Inside of this repository, > third party libraries are listed in a consistent structure. I have a

[CMake] How to get modified cache variables?

2012-09-02 Thread Stefan Reuschl
Hi, is there a direct way to find out which cache variables are modified? Cache variables might be modified directly by the user (i.e. using cmake -D oder cmake-gui). And they could also be outdated because the default value in the "set(... CACHE ...)" command was changed in the CMakeLists.tx

[CMake] Update multiple subprojects in CTest script

2012-09-01 Thread Stefan Reuschl
Hi all, updating multiple subprojects in a CTest script and record the results to show in CDash is not supported, see: http://public.kitware.com/Bug/view.php?id=8263 My current workaround is to dynamically set svn:externals before the call to ctest_update() which showed the following issue

Re: [CMake] Getting started with the tutorial

2012-08-23 Thread Stefan Reuschl
Am 22.08.2012, 22:59 Uhr, schrieb David MacQuigg : I'm just getting started with CMake. Downloaded and installed version 2.8.9 under Mac OS 10.6. Downloaded the tutorial (Step 1) from Tests/Tutorial. Everything looks normal. I then ran CMake and filled out the form with the source and

Re: [CMake] Can imported libraries depend on ExternalProject targets?

2012-06-23 Thread Stefan Reuschl
Am 22.06.2012, 20:21 Uhr, schrieb Kent Williams : OK, I guess. The only reason I bring this up is ITK. If you're familiar with the ITK build process, it has a 'module' concept -- not a module in the CMake sense (where it is a library intended for runtime loading), but in the sense that the bu

Re: [CMake] Strange behavior with Nightly builds

2012-06-06 Thread Stefan Reuschl
Am 06.06.2012, 08:57 Uhr, schrieb NoRulez : Hello, here is the build process of the build server: 1.) e.g.: last commit at 03:00 pm (svn revision 8) => build is ok 2.) The nightly build starts at 10:00 pm (svn revision 7) => build is ok Why is the svn revision before the last commit, it sh

[CMake] Usage of add_library(... IMPORTED)

2011-09-17 Thread Stefan Reuschl
Hi list, a question about using IMPORTED library targets: The documentation says It may be referenced like any target built within the project. Which would sound nice without the exception in the previous sentence: The target name has scope in the directory in which it is created and below. T