[CMake] VisualStudio debug command

2006-03-28 Thread Luigi Calori
Probably newby question: Under Visual Studio, at least from VS 7, a project can have debugging command and command arguments. Is it possible to set them in a CMakeFile ? Thanks a lot Luigi ___ CMake mailing list CMake@cmake.org

RE: [CMake] VisualStudio debug command

2006-03-28 Thread Ian . Appru
Hi Luigi, I believe debugging info is held in a binary file - *.suo for vc7 - so would be tricky to set using cmake without using the vcproject automation engine. Ian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luigi Calori Sent: 28 March 2006 12:45

Re: [CMake] how to set the executable flag on a file ?

2006-03-28 Thread Brad King
Gaetan Lehmann wrote: In our project, with CONFIGURE_FILE() macro, we are configuring the paths in a script. How can we set the executable flag on this script, both for file in build tree and installed one ? Currently you have to make sure the input file has the proper permissions to get

Re: [CMake] Is it possible to set some environment vars to run some tests ?

2006-03-28 Thread William A. Hoffman
At 10:08 AM 3/28/2006, Brad King wrote: Gaetan Lehmann wrote: To run some tests on the python modules compiled with cmake, I need to set the PYTHONPATH environement variable for the tests added with ADD_TEST() macro. Is it possible ? Not directly with Dart or ctest. We typically have created

Re: [CMake] order of include dirs

2006-03-28 Thread Brad King
Alexander Neundorf wrote: in KDE we have the problem that e.g. when compiling kdebase the headers in the source dir should be preferred over the installed ones. Usually we would do include_directories( ${KDE4_INCLUDES} ) in the toplevel CMakeLists.txt. When adding more include dirs in