Re: [CMake] Triggering individual steps of externalproject_add add cmake time

2011-04-29 Thread Jan Wurster
Hi David, thanks for your help and suggestions! > From: David Cole [mailto:david.c...@kitware.com] > Sent: Donnerstag, 28. April 2011 19:57 > Subject: Re: [CMake] Triggering individual steps of externalproject_add add cmake time > > I would strongly encourage you to allow the download to occu

[CMake] Triggering individual steps of externalproject_add add cmake time

2011-04-28 Thread Jan Wurster
Dear list, as I'm encountering a case where I'd like to trigger the download of a file (3rd party) structure from a git repository I've been looking into ExternalProject_add and its benefits. However the key element would be to perform the download step immediately, i.e. at cmake first run time

[CMake] cpack - WiX generator

2010-07-16 Thread Jan Wurster
Dear list, a couple of months ago someone suggested and implemented a patch for cmake to add a WiX generator to cpack. http://www.mail-archive.com/cmake@cmake.org/msg26882.html The patch is still available http://annealingtechnologies.blogspot.com/2010/02/wix-and-cpack-integrat ion.html A

Re: [CMake] CTEST_UPDATE command and deep file hierarchies in repository

2009-11-20 Thread Jan Wurster
Hi again, > From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On > Behalf Of Jan Wurster > Sent: Freitag, 20. November 2009 16:49 > To: cmake@cmake.org > Subject: [CMake] CTEST_UPDATE command and deep file hierarchies in > repository > I've had a look

[CMake] CTEST_UPDATE command and deep file hierarchies in repository

2009-11-20 Thread Jan Wurster
Hi everybody, I've run into a small problem with automatic svn updates of a nightly build repository. The repository contains names longer as the 'traditional' 260 char windows MAX_PATH limit. From the FAQ of subversion: http://subversion.tigris.org/faq.html#long-paths I've had a loo

Re: [CMake] Adding install dependency to test-target?

2008-11-21 Thread Jan Wurster
Hi Hugo, > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Hugo Heden > Sent: Thursday, November 20, 2008 10:51 AM > Is there any way that I can add 'install' dependency to the 'test'- > target? Maybe it isn't relevant to your specific needs - but I

Re: [CMake] automatic install of targets

2008-11-19 Thread Jan Wurster
Hi everyone, > Since dependency handling seemingly has been improved in cmake 2.6.2, > the probably correct behaviour now means that a project that gets > added by add_subdirectory now is installed while it's not actually > built yet, leading to a post-build error. This is especially true for

[CMake] automatic install of targets

2008-11-17 Thread Jan Wurster
Hi everyone, Working on a project on the slightly larger side of things I'm in a situation where I need to support mainly Visual Studio builds. While switching to cmake 2.6.2, we've been experiencing an issue in a macro definition we use to automatically install a target in its post-build phase.

RE: [CMake] ctest scripts with svn

2008-02-12 Thread Jan Wurster
Hi there, To answer myself .. the answer is not to use the 'older generation' ctest script syntax as described e.g. on the wiki here http://www.cmake.org/Wiki/CMake_Scripting_Of_CTest. Using the newer syntax as used in tutorial/step7 of cvs-cmake works with svn, the old syntax just doesn't a

[CMake] ctest scripts with svn

2008-02-11 Thread Jan Wurster
Hi everybody, I'm trying to get a ctest (from cmake-2.4.8 release) script to run with our svn repository and am hitting some obstacles in the way ;) To begin with, I can't get the generated DartConfiguration.tcl to contain an SVNCommand definition. I do set CTEST_SVN_COMMAND and let ctest ins

[CMake] RE: ADD_TEST for debug/release configurations?

2007-11-05 Thread Jan Wurster
Dear list, > -Original Message- > From: Jan Wurster > Sent: Monday, October 22, 2007 10:29 AM > > Is there any way at all for the vs8 generator to > enable/disable test cases in RUN_TESTS on the basis of the > selected configuration (debug/rele

[CMake] ADD_TEST for debug/release configurations?

2007-10-22 Thread Jan Wurster
Dear list, I've run into a problem where I need some testcases to not run in debug configuration (they take ages to complete). Since we're on windows here, I cannot use CMAKE_BUILD_TYPE or similar to just add the test case for release. I've tried my luck with CMAKE_CFG_INTDIR but that didn't se