From 0dd418fb1cac73eca0ee4bd1bde2ee86be7c1067 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 9 Sep 2026 14:32:37 +0500 Subject: [PATCH] cmake: drop stale static VC runtime warning Since cmake 3.15 dynamic runtime is used by default and we don't really support static runtime. --- cmake/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 84d7002398..c3b1dd7387 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -235,7 +235,6 @@ endif() message(STATUS "INCLUDEDIR: ${INCLUDEDIR}") if(MSVC) - message(WARNING "Building DLLs against the static VC run-time. This is not recommended if the DLLs are to be redistributed.") # C4521: 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2' # There will be couple hundreds of these so suppress them away, https://msdn.microsoft.com/en-us/library/esew7y1w.aspx add_definitions(-wd4251)