2001-06-07 22:52:29 +04:00
|
|
|
# microsoft specific config file
|
2001-05-17 20:04:41 +04:00
|
|
|
SET (WORDS_BIGENDIAN )
|
|
|
|
SET (HAVE_LIMITS_H 1)
|
|
|
|
SET (HAVE_UNISTD_H 1)
|
2001-06-07 22:52:29 +04:00
|
|
|
SET (CMAKE_CXX_COMPILER VC++60 CACHE STRING
|
|
|
|
"Name of C++ compiler used.")
|
2001-05-24 20:57:33 +04:00
|
|
|
SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING
|
2001-05-25 23:27:52 +04:00
|
|
|
"Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files)")
|
2001-07-03 13:27:39 +04:00
|
|
|
SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Zi /O2" CACHE STRING
|
|
|
|
"Flags used by the compiler during Release with Debug Info builds")
|
2001-05-24 20:57:33 +04:00
|
|
|
SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE STRING
|
|
|
|
"Flags used by the compiler during release minsize builds")
|
|
|
|
SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING
|
|
|
|
"Flags used by the compiler during debug builds")
|
|
|
|
SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE STRING
|
2001-05-25 23:27:52 +04:00
|
|
|
"Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++, /Zm1000 increases the compiler's memory allocation to support ANSI C++/stdlib")
|
2001-08-17 01:42:58 +04:00
|
|
|
SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL "Use the win32 thread library")
|
2001-11-16 01:11:26 +03:00
|
|
|
SET (CMAKE_MAKE_PROGRAM "msdev" CACHE STRING "Program used to build from dsp files.")
|