mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-15 22:35:33 -05:00
This indicates to MSBuild which configurations are considered debug configurations. This is useful for reference both by humans and tools. Issue: #25327
11 lines
415 B
CMake
11 lines
415 B
CMake
set(CMAKE_CONFIGURATION_TYPES Debug Release)
|
|
enable_language(CXX)
|
|
|
|
# Test several generator code paths covering different target types.
|
|
add_library(default empty.cxx)
|
|
add_library(defaultCLR empty.cxx)
|
|
set_property(TARGET defaultCLR PROPERTY COMMON_LANGUAGE_RUNTIME "")
|
|
add_library(defaultRTL empty.cxx)
|
|
set_property(TARGET defaultRTL PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
|
|
add_custom_target(defaultUtil)
|