Changeset 3116 for code/branches/pch/cmake/BuildConfigMSVC.cmake
- Timestamp:
- Jun 3, 2009, 8:28:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/cmake/BuildConfigMSVC.cmake
r2710 r3116 24 24 # 25 25 26 ################### Compiler Version #################### 27 28 # We make use of variadic macros, which is only supported by MSVC 8 and above 29 IF(MSVC_VERSION LESS 1400) 30 MESSAGE(FATAL_ERROR "Microsoft Visual Studio versions below 8 (2005) are not supported because of missing compiler extensions.") 31 ENDIF() 32 33 26 34 ######################## Options ######################## 27 35 28 OPTION(VISUAL_LEAK_DETECTOR_ENABLE "Memory leak detector" FALSE) 36 IF(MSVC80) 37 OPTION(VISUAL_LEAK_DETECTOR_ENABLE "Memory leak detector" FALSE) 38 ENDIF(MSVC80) 29 39 30 40 #################### Compiler Flags #####################
Note: See TracChangeset
for help on using the changeset viewer.