I am using CMake to generate Visual Studio project files. I want to run the test executable after setting the PATH environment variable so that it is able to load the required dll. I tried as per the discussion at http://www.mail-archive.com/cmake@cmake.org/msg21493.html but it does not work.

Have you used CMake with Visual Studio for this purpose? Please share your experiences.

Also, I find no easy way to debug my CMake script, for example to see what value it assigns to the PATH variable. Setting CMake verbose with CMAKE_VERBOSE_MAKEFILE does not help. How would I go about debugging it myself?

link|improve this question

65% accept rate
feedback

4 Answers

up vote 15 down vote accepted
+100

For setting custom project setting in Visual Studio from CMake you can use a XML file as a template which can be configured from CMake to work as the .user file.
At my work we use this to set custom debug parameters.

Check the directory containing the generated .vcproj files for the user settings in the .user files. Here is a snippet of an example UserTemplate.vcproj file we use.

<?xml version="1.0" encoding="Windows-1252"?>
  <VisualStudioUserFile
    ProjectType="Visual C++"
    Version="9.00"
    ShowAllFiles="false"
    >
    <Configurations>
    	<Configuration
    		Name="Debug|@USERFILE_PLATFORM@"
    		>
    		<DebugSettings
    			Command="@USERFILE_COMMAND_DEBUG@"
    			WorkingDirectory="@USERFILE_WORKING_DIRECTORY_DEBUG@"
    			CommandArguments="@USERFILE_COMMAND_ARGUMENTS_DEBUG@"
    			Attach="false"
    			DebuggerType="3"
    			Remote="1"
    			RemoteMachine="@USERFILE_REMOTE_MACHINE_DEBUG@"
                            <!-- More settings removed for snippet -->
    		/>
    	</Configuration>
            <!-- Rest of Configurations -->

This way you can inject any needed variables from CMake into the .user file. In CMake you can set the appropiate CMake variables (and add more in the template file if you need them). Next you can do something like this to configure the file.

# Find user and system name
SET(SYSTEM_NAME $ENV{USERDOMAIN} CACHE STRING SystemName)
SET(USER_NAME $ENV{USERNAME} CACHE STRING UserName)

# Configure the template file
SET(USER_FILE ${_projectName}.vcproj.${SYSTEM_NAME}.${USER_NAME}.user)
SET(OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/${USER_FILE})
CONFIGURE_FILE(UserTemplate.user ${USER_FILE} @ONLY)
link|improve this answer
This mostly works, but then VStudio overrides my new .user file. How do I instruct VStudio to use a different .user file, or respect my changes? – Terry Lorber Mar 23 '10 at 17:22
@terry-lorber: Today I verified that the above does actually work on VS2008SP1. I created a .vcproj file using CMake, copied in a something.vcproj.<system>.<user>.user file in the right spot where Visual Studio normally creates it, and my local changes to that file showed up when I viewed the .sln file in the VS IDE. – bgoodr Mar 11 '11 at 19:39
2  
I've extended this, including supporting VS2010 - see CreateLaunchers in github.com/rpavlik/cmake-modules/blob/master/… The trick is that you can't have visual studio open when generating this - it overwrites this file on exit. – rpavlik Sep 23 '11 at 13:16
feedback

Just spotted this question now. To debug cmake files I use

MESSAGE( STATUS "static text ${variable}" )

I have never had to set the path get my tests to run. Are you using CTest? It looks like the link you are following is used with ctest.

If I was trying to get this to work I would use set_tests_properties explicitly first.

set_tests_properties(SomeTest PROPERTIES ENVIRONMENT "PATH=c:\somedir;c:\otherdir")

Then make it more general.

Iain.

link|improve this answer
feedback

Just wondering how you've gone finding a solution to this?

I'm having the same problem and I suspect it is because I'm not using the cvs build of cmake. In this post it is suggested that this wont be released until 2.8!

http://www.itk.org/Bug/view.php?id=7885

link|improve this answer
feedback

Here is related CMake feature request report:

http://www.kwwidgets.org/Bug/view.php?id=8884

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.