summaryrefslogtreecommitdiffstats
path: root/Tests/VSResource
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2011-01-26 13:26:31 (GMT)
committerDavid Cole <david.cole@kitware.com>2011-01-26 13:26:31 (GMT)
commit8f9919d93cad64de58775e4a7609b0ffb37d061e (patch)
treee76d41e5d967df4c8f6761ae4bb8c2de57d97f56 /Tests/VSResource
parent78fe97f2ff4dbe66590ee79a342ac01a5566ef31 (diff)
downloadCMake-8f9919d93cad64de58775e4a7609b0ffb37d061e.zip
CMake-8f9919d93cad64de58775e4a7609b0ffb37d061e.tar.gz
CMake-8f9919d93cad64de58775e4a7609b0ffb37d061e.tar.bz2
Avoid space in rc /D values for VS6 and Cygwin (#11695)
Change to the test only. Using a space in an rc /D value will not work at present with VS6 or Cygwin rc compilers.
Diffstat (limited to 'Tests/VSResource')
-rw-r--r--Tests/VSResource/CMakeLists.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/Tests/VSResource/CMakeLists.txt b/Tests/VSResource/CMakeLists.txt
index 8c14f8d..5fbd572 100644
--- a/Tests/VSResource/CMakeLists.txt
+++ b/Tests/VSResource/CMakeLists.txt
@@ -1,13 +1,18 @@
cmake_minimum_required(VERSION 2.8.3.20110118)
-project (VSResource)
+project(VSResource)
string(REPLACE "/INCREMENTAL:YES" ""
CMAKE_EXE_LINKER_FLAGS_DEBUG
"${CMAKE_EXE_LINKER_FLAGS_DEBUG}")
-configure_file(${CMAKE_CURRENT_SOURCE_DIR}/test.txt
- "${CMAKE_CURRENT_BINARY_DIR}/test with spaces.txt" COPYONLY)
-include_directories(${CMAKE_CURRENT_BINARY_DIR})
-add_definitions(/DCMAKE_RCDEFINE="test with spaces.txt")
+if(MSVC60 OR CYGWIN)
+ # VS6 and Cygwin rc compilers do not deal well with spaces in a "/D" value
+ add_definitions(/DCMAKE_RCDEFINE="test.txt")
+else()
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/test.txt
+ "${CMAKE_CURRENT_BINARY_DIR}/test with spaces.txt" COPYONLY)
+ include_directories(${CMAKE_CURRENT_BINARY_DIR})
+ add_definitions(/DCMAKE_RCDEFINE="test with spaces.txt")
+endif()
add_executable(VSResource main.cpp test.rc)