From 12a5949b16b6e3c4bc342f8ecaac2b9765c2ff9c Mon Sep 17 00:00:00 2001 From: luisangelsm Date: Mon, 30 Mar 2026 08:51:00 +0200 Subject: [PATCH] Use QT_DISABLE_DEPRECATED_UP_TO globally Set to 6.4 until we can bump up the minimum qt version in the server project. --- cmake/CompilerOptions.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/CompilerOptions.cmake b/cmake/CompilerOptions.cmake index 2ef38eb3..c90fa6f8 100644 --- a/cmake/CompilerOptions.cmake +++ b/cmake/CompilerOptions.cmake @@ -9,3 +9,5 @@ if(MSVC) # /permissive-: strict standard conformance add_compile_options(/Zc:__cplusplus /permissive-) endif() + +add_compile_definitions(QT_DISABLE_DEPRECATED_UP_TO=0x060400)