summaryrefslogtreecommitdiffstats
path: root/Tests/MSVCRuntimeLibrary
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-02-20 15:37:18 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-02-20 15:37:32 (GMT)
commit3a171009e96a74da0c6c67030716ee83cd54a47e (patch)
treec65462fc074680d3d6a20a729236b99554f3d69e /Tests/MSVCRuntimeLibrary
parent3710358c7ed30cf1a0e19b689391140adaadba75 (diff)
parentb81464144468e930acc5bf55243dbb0a0f3ae0fb (diff)
downloadCMake-3a171009e96a74da0c6c67030716ee83cd54a47e.zip
CMake-3a171009e96a74da0c6c67030716ee83cd54a47e.tar.gz
CMake-3a171009e96a74da0c6c67030716ee83cd54a47e.tar.bz2
Merge topic 'vs-UseDebugLibraries'
b814641444 VS: Add [CMAKE_]VS_USE_DEBUG_LIBRARIES options to control UseDebugLibraries 67de5b7b82 VS: Suppress MSBuild default settings affected by UseDebugLibraries 0ae372daee VS: Factor out common MS tool configuration Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9270
Diffstat (limited to 'Tests/MSVCRuntimeLibrary')
-rw-r--r--Tests/MSVCRuntimeLibrary/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/Tests/MSVCRuntimeLibrary/CMakeLists.txt b/Tests/MSVCRuntimeLibrary/CMakeLists.txt
index f7d9fec..f1ed9b4 100644
--- a/Tests/MSVCRuntimeLibrary/CMakeLists.txt
+++ b/Tests/MSVCRuntimeLibrary/CMakeLists.txt
@@ -57,10 +57,6 @@ function(verify lang src)
# VS 2005 and above default to multi-threaded.
target_compile_definitions(empty-${lang} PRIVATE VERIFY_MT)
endif()
- if(CMAKE_GENERATOR MATCHES "Visual Studio ([^9]|9[0-9])")
- # VS 2010 and above have a different default runtime library for projects than 'cl'.
- target_compile_definitions(empty-${lang} PRIVATE VERIFY_DLL)
- endif()
endif()
endfunction()