From aa0e95a96825893586a1d9a4e91f10209692906c Mon Sep 17 00:00:00 2001 From: Andy Vandijck Date: Sun, 11 May 2025 10:05:50 +0200 Subject: [PATCH] Fix debug build --- src/wx/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/CMakeLists.txt b/src/wx/CMakeLists.txt index 7546c03f..5c93ce53 100644 --- a/src/wx/CMakeLists.txt +++ b/src/wx/CMakeLists.txt @@ -182,7 +182,7 @@ endif() find_package(OpenAL REQUIRED) if(WIN32) - if(CMAKE_BUILD_TYPE Debug) + if(CMAKE_BUILD_TYPE STREQUAL "Debug") find_library(FMT fmtd) else() find_library(FMT fmt)