diff options
author | click <none@none> | 2010-08-08 19:11:57 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-08 19:11:57 +0200 |
commit | 31160bcfce97dc403627f986ca343de6496c8ea8 (patch) | |
tree | b0bbb30dcf2b75cb0cc6a58e40d609fdc3cfaa66 /CMakeLists.txt | |
parent | 590199d8e17405a0717eaf2e2d39f0d671b6f844 (diff) |
Buildsystem/Windows: Minor adjustment to use the correct "environment"-variable in both VS2008 and VS2010
--HG--
branch : trunk
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e73241363d6..4590c1e9740 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -129,7 +129,7 @@ add_executable(genrev if( CMAKE_GENERATOR MATCHES "Visual Studio" ) add_custom_target("revision.h" ALL - COMMAND "${CMAKE_BINARY_DIR}/bin/$(Configuration)/genrev" + COMMAND "${CMAKE_BINARY_DIR}/bin/$(ConfigurationName)/genrev" ${CMAKE_SOURCE_DIR} WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" DEPENDS genrev |