summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCXXCompilerId.cpp.in
diff options
context:
space:
mode:
authorPatrick Gansterer <paroga@paroga.com>2012-11-20 12:37:50 (GMT)
committerBrad King <brad.king@kitware.com>2012-11-27 13:31:19 (GMT)
commit40c36c9f7bd101185b06ddf2aee079ccbe7634d3 (patch)
treeec739b73730ab2beb87e5e438b890ce4cb440648 /Modules/CMakeCXXCompilerId.cpp.in
parent038df9e49e6fcb54d6f6a1bcfb09f6a0e5ec0c2e (diff)
downloadCMake-40c36c9f7bd101185b06ddf2aee079ccbe7634d3.zip
CMake-40c36c9f7bd101185b06ddf2aee079ccbe7634d3.tar.gz
CMake-40c36c9f7bd101185b06ddf2aee079ccbe7634d3.tar.bz2
VS: Make DetermineCompilerId working with WinCE too
Add a dummy mainCRTStartup() function, since the linker searches for it instead of main() and set the CMAKE_SYSTEM_* variables depending on the MSVC_C_ARCHITECTURE_ID and CMAKE_VS_WINCE_VERSION variables.
Diffstat (limited to 'Modules/CMakeCXXCompilerId.cpp.in')
-rw-r--r--Modules/CMakeCXXCompilerId.cpp.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/CMakeCXXCompilerId.cpp.in b/Modules/CMakeCXXCompilerId.cpp.in
index 5e70a41..142a5c5 100644
--- a/Modules/CMakeCXXCompilerId.cpp.in
+++ b/Modules/CMakeCXXCompilerId.cpp.in
@@ -210,3 +210,7 @@ int main(int argc, char* argv[])
(void)argv;
return require;
}
+
+#ifdef ADD_MAINCRTSTARTUP
+extern "C" void mainCRTStartup() {}
+#endif