Files
CMake/Tests/RunCMake/VS10ProjectUseDebugLibraries/Default.cmake
Brad King b814641444 VS: Add [CMAKE_]VS_USE_DEBUG_LIBRARIES options to control UseDebugLibraries
This indicates to MSBuild which configurations are considered debug
configurations.  This is useful for reference both by humans and tools.

Issue: #25327
2024-02-19 10:40:41 -05:00

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)