From 61c13655d32f3a15de586bbaacce3f4e88ca601c Mon Sep 17 00:00:00 2001 From: DioEgizio <83089242+DioEgizio@users.noreply.github.com> Date: Fri, 13 Feb 2026 18:11:55 +0100 Subject: [PATCH] fix: disable qt debug in every non-debug build without this change it was still enabled in RelWithDebInfo Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b3b051001..e452aee77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ set(CMAKE_CXX_STANDARD 20) set(CMAKE_C_STANDARD 11) include(GenerateExportHeader) -add_compile_definitions($<$:QT_NO_DEBUG>) +add_compile_definitions($<$>:QT_NO_DEBUG>) if(MSVC) # /GS Adds buffer security checks, default on but incuded anyway to mirror gcc's fstack-protector flag