From 4458ee8ad686cd96f32de81b685c9ca7dc11cb1e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Apr 2024 18:20:37 -0400 Subject: [PATCH] Revert "D'oh, the if is the wrong way" This reverts commit 3bb54c5e00eb679bc170a9a289c0cfa8d7e3b757. --- launcher/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index 3b5f1e3..ac8f8a2 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -27,8 +27,6 @@ endif() # Qt 6.7 brings DEPLOY_TOOL_OPTIONS if(Qt6_VERSION_MINOR LESS 7) - message(INFO "App deployment requires Qt 6.7") -else() set(deploy_tool_options_arg "") if (WIN32) set(deploy_tool_options_arg --no-quick-import --no-virtualkeyboard --no-opengl-sw --plugindir "${CMAKE_INSTALL_PREFIX}/bin/bin/plugins" --libdir "${CMAKE_INSTALL_PREFIX}/bin/bin/" --no-translations) @@ -42,4 +40,6 @@ else() DEPLOY_TOOL_OPTIONS ${deploy_tool_options_arg} ) install(SCRIPT ${deploy_script}) +else() + message(INFO "App deployment requires Qt 6.7") endif()