From f8ec92e7fd964e23b5655daaaf70ae9bc72120fd Mon Sep 17 00:00:00 2001 From: Tomasz Kalisiak Date: Sat, 27 Jan 2024 02:47:37 +0100 Subject: [PATCH] Fix different formatting of msvc runtime value conan_provider.cmake --- conan_provider.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/conan_provider.cmake b/conan_provider.cmake index 73e530ce..05882559 100644 --- a/conan_provider.cmake +++ b/conan_provider.cmake @@ -204,6 +204,7 @@ function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUN list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$:Debug> MultiThreaded$<$:Debug>DLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES $<$:MultiThreadedDebugDLL>$<$:MultiThreadedDLL>) # only accept the 6 possible values, otherwise we don't don't know to map this if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES)