diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-28 12:50:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-28 12:50:47 (GMT) |
commit | aa88d4824c47dc15a03c1ffd05d6c8ce86c35cd2 (patch) | |
tree | 6a34dfc890dde48de1268da1f9f61dc24b07939e | |
parent | 6c1e38abb4d36cebaff76807bd0e5979b520b6f9 (diff) | |
download | CMake-aa88d4824c47dc15a03c1ffd05d6c8ce86c35cd2.zip CMake-aa88d4824c47dc15a03c1ffd05d6c8ce86c35cd2.tar.gz CMake-aa88d4824c47dc15a03c1ffd05d6c8ce86c35cd2.tar.bz2 |
ENH: add build name to the cache with a default value for dot net
-rw-r--r-- | Templates/CMakeDotNetSystemConfig.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Templates/CMakeDotNetSystemConfig.cmake b/Templates/CMakeDotNetSystemConfig.cmake index 1e71371..66f4706 100644 --- a/Templates/CMakeDotNetSystemConfig.cmake +++ b/Templates/CMakeDotNetSystemConfig.cmake @@ -21,6 +21,9 @@ SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL SET (CMAKE_MAKE_PROGRAM "devenv" CACHE STRING "Program used to build from dsp files.") +SET (BUILDNAME "Win32-DotNET-devenv" CACHE STRING + "Name used by dart to specify the build name.") + SET (CMAKE_CONFIGURATION_TYPES "Debug Release MinSizeRel RelWithDebInfo" CACHE STRING "Space separated list of supported configuration types, only supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything else will be ignored.") @@ -36,6 +39,7 @@ SET (CMAKE_SIZEOF_DOUBLE 8 CACHE INTERNAL "Size of double data type") # The following variables are advanced MARK_AS_ADVANCED( +BUILDNAME CMAKE_CXX_USE_RTTI CMAKE_CXX_COMPILER CMAKE_CXX_STACK_SIZE |