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.
This commit is contained in:
David Cole 2011-01-26 08:26:31 -05:00
parent 78fe97f2ff
commit 8f9919d93c
1 changed files with 10 additions and 5 deletions

View File

@ -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)