CMakeDotNetSystemConfig.cmake 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Microsoft specific config file
  2. SET (CMAKE_CXX_COMPILER cl CACHE STRING
  3. "Name of C++ compiler used.")
  4. SET (CMAKE_CXX_FLAGS "/Zm1000 " CACHE STRING
  5. "Flags used by the compiler during all build types, /Zm1000 increases the compiler's memory allocation to support ANSI C++/stdlib, /W3 sets the warning level to 3")
  6. SET (CMAKE_CXX_STACK_SIZE "10000000" CACHE STRING
  7. "Size of stack for programs.")
  8. SET (CMAKE_CXX_WARNING_LEVEL "3" CACHE STRING
  9. "Size of stack for programs.")
  10. SET (CMAKE_CXX_USE_RTTI 1 CACHE BOOL
  11. "Compile CXX code with run time type information.")
  12. SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL
  13. "Use the win32 thread library")
  14. SET (CMAKE_MAKE_PROGRAM "devenv" CACHE STRING
  15. "Program used to build from dsp files.")
  16. SET (BUILDNAME "Win32-DotNET-devenv" CACHE STRING
  17. "Name used by dart to specify the build name.")
  18. SET (CMAKE_CONFIGURATION_TYPES "Debug Release MinSizeRel RelWithDebInfo" CACHE STRING
  19. "Space separated list of supported configuration types, only supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything else will be ignored.")
  20. # We will hardcode them for now. Make sure to fix that in the future
  21. SET (CMAKE_SIZEOF_INT 4 CACHE INTERNAL "Size of int data type")
  22. SET (CMAKE_SIZEOF_LONG 4 CACHE INTERNAL "Size of long data type")
  23. SET (CMAKE_SIZEOF_VOID_P 4 CACHE INTERNAL "Size of void* data type")
  24. SET (CMAKE_SIZEOF_CHAR 1 CACHE INTERNAL "Size of char data type")
  25. SET (CMAKE_SIZEOF_SHORT 2 CACHE INTERNAL "Size of short data type")
  26. SET (CMAKE_SIZEOF_FLOAT 4 CACHE INTERNAL "Size of float data type")
  27. SET (CMAKE_SIZEOF_DOUBLE 8 CACHE INTERNAL "Size of double data type")
  28. # The following variables are advanced
  29. MARK_AS_ADVANCED(
  30. BUILDNAME
  31. CMAKE_CXX_USE_RTTI
  32. CMAKE_CXX_COMPILER
  33. CMAKE_CXX_STACK_SIZE
  34. CMAKE_CXX_WARNING_LEVEL
  35. CMAKE_USE_WIN32_THREADS
  36. CMAKE_MAKE_PROGRAM
  37. CMAKE_EXTRA_LINK_FLAGS
  38. )