summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-25 16:26:48 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-25 16:29:45 (GMT)
commit772eae446409fb853585e196009c87d3037fbc22 (patch)
tree923eacb40ec41fc0caf95cb9ffb0a9b4d1e76544 /Modules
parent4300de3e2759810ddfd253352eb42cd7f3514c85 (diff)
downloadCMake-772eae446409fb853585e196009c87d3037fbc22.zip
CMake-772eae446409fb853585e196009c87d3037fbc22.tar.gz
CMake-772eae446409fb853585e196009c87d3037fbc22.tar.bz2
RC: Add platform-specific preprocessor definitions (#15404)
In Platform/Windows-MSVC the C and CXX flags are initialized to contain preprocessor definitions describing the platform. On WinCE platforms this may not be just -DWIN32. This information may be important to RC sources too, so add such preprocessor definitions to the default RC flags. Suggested-by: Gunnar Roth <gunnar.roth@gmx.de>
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Platform/Windows-MSVC.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/Platform/Windows-MSVC.cmake b/Modules/Platform/Windows-MSVC.cmake
index 7ac299a..9298da2 100644
--- a/Modules/Platform/Windows-MSVC.cmake
+++ b/Modules/Platform/Windows-MSVC.cmake
@@ -271,5 +271,9 @@ macro(__windows_compiler_msvc lang)
set(CMAKE_${lang}_FLAGS_MINSIZEREL_INIT "/MD /O1 /Ob1 /D NDEBUG")
set(CMAKE_${lang}_LINKER_SUPPORTS_PDB ON)
+ if(NOT CMAKE_RC_FLAGS_INIT)
+ set(CMAKE_RC_FLAGS_INIT "${_PLATFORM_DEFINES} ${_PLATFORM_DEFINES_${lang}}")
+ endif()
+
enable_language(RC)
endmacro()