diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-14 15:21:59 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-14 15:21:59 (GMT) |
commit | f978b6f7ea62b54c4190e0f20633c2823c21beea (patch) | |
tree | efd5683ae5149a0f2acd1a86ee7bdac373672db1 /Templates | |
parent | 7ac4e783166ddc2bbbd6c58fa472e2317668d292 (diff) | |
download | CMake-f978b6f7ea62b54c4190e0f20633c2823c21beea.zip CMake-f978b6f7ea62b54c4190e0f20633c2823c21beea.tar.gz CMake-f978b6f7ea62b54c4190e0f20633c2823c21beea.tar.bz2 |
nmake support
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/CMakeNMakeWindowsSystemConfig.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Templates/CMakeNMakeWindowsSystemConfig.cmake b/Templates/CMakeNMakeWindowsSystemConfig.cmake new file mode 100644 index 0000000..ce82fb9 --- /dev/null +++ b/Templates/CMakeNMakeWindowsSystemConfig.cmake @@ -0,0 +1,21 @@ +# microsoft specific config file +SET (WORDS_BIGENDIAN ) +SET (HAVE_LIMITS_H 1) +SET (HAVE_UNISTD_H 1) +SET (CMAKE_CXX_COMPILER cl CACHE FILEPATH + "Name of C++ compiler used.") +SET (CMAKE_C_COMPILER cl CACHE FILEPATH + "Name of C compiler used.") +SET (CMAKE_CFLAGS cl CACHE FILEPATH + "Flags for C compiler.") +SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING + "Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files)") +SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Zi /O2" CACHE STRING + "Flags used by the compiler during Release with Debug Info builds") +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 + "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") +SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL "Use the win32 thread library") |