CMakeWindowsSystemConfig.cmake 726 B

12345678910111213141516
  1. #
  2. # CMakeLocal.make.in should be in the directory where you run configure
  3. # in, which need not be the source directory
  4. #
  5. SET (WORDS_BIGENDIAN )
  6. SET (HAVE_LIMITS_H 1)
  7. SET (HAVE_UNISTD_H 1)
  8. SET (CXX VC++60 )
  9. SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING
  10. "Flags used by the compiler during release builds")
  11. SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE STRING
  12. "Flags used by the compiler during release minsize builds")
  13. SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING
  14. "Flags used by the compiler during debug builds")
  15. SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE STRING
  16. "Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++")