From 01bc9dd380312c2678cc9d6ceb93e0d2ac01a981 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Sat, 12 Aug 2023 17:57:16 +0200 Subject: [PATCH] re-enable DEP_DEBUG on all platforms --- deps/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index f5bfb36004..38c304c3b3 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -208,7 +208,7 @@ dep_message(STATUS "Building dep targets (${CMAKE_BUILD_TYPE}): ${_build_list}") add_custom_target(deps ALL DEPENDS ${_build_list_toplevel}) # Support legacy option DEP_DEBUG on MSVC to build debug libraries in the same cmake run as for CMAKE_BUILD_TYPE: -if (MSVC AND DEP_DEBUG AND NOT CMAKE_BUILD_TYPE STREQUAL "Debug") +if (DEP_DEBUG AND NOT CMAKE_BUILD_TYPE STREQUAL "Debug") # MSVC has this nice feature to not be able to link release mode libs to Debug mode # projects