From 7614a912e1292d6ce4330f17b5a885a911e3bef8 Mon Sep 17 00:00:00 2001 From: Holden <68555040+HTRamsey@users.noreply.github.com> Date: Thu, 25 Apr 2024 02:54:06 -0400 Subject: [PATCH] CMake: Make Deployment Verbose only for Debug (#11373) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fb0a46c2b7..2e064f65b2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,9 +90,9 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release") elseif(CMAKE_BUILD_TYPE STREQUAL "Debug") include(CTest) enable_testing() -endif() -set(QT_ENABLE_VERBOSE_DEPLOYMENT ON CACHE BOOL "Verbose Deployment") + set(QT_ENABLE_VERBOSE_DEPLOYMENT ON CACHE BOOL "Verbose Deployment") +endif() if(ANDROID) cmake_print_variables(QT_ANDROID_APPLICATION_ARGUMENTS QT_HOST_PATH)