From 3faa45435f95203bec007ca6a010a95d7acdeffd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 19:39:25 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca92c406e..837910b79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -301,7 +301,9 @@ set(GAMMARAY_BUILD_CLI_INJECTOR_DEFAULT ON) if(WIN32) set(GAMMARAY_BUILD_CLI_INJECTOR_DEFAULT OFF) endif() -gammaray_option(GAMMARAY_BUILD_CLI_INJECTOR "Build command line injector on Windows." ${GAMMARAY_BUILD_CLI_INJECTOR_DEFAULT}) +gammaray_option( + GAMMARAY_BUILD_CLI_INJECTOR "Build command line injector on Windows." ${GAMMARAY_BUILD_CLI_INJECTOR_DEFAULT} +) if(WIN32 AND GAMMARAY_BUILD_CLI_INJECTOR) message(FATAL_ERROR "Cannot use CLI injection on Windows.") endif() @@ -616,7 +618,8 @@ if(NOT HAVE_QT_WIDGETS) endif() gammaray_option( GAMMARAY_CORE_ONLY_LAUNCHER - "Only use QtCore in the CLI launcher (breaks style injector, but is needed for Boot2Qt compatibility)" ${GAMMARAY_CORE_ONLY_LAUNCHER_DEFAULT} + "Only use QtCore in the CLI launcher (breaks style injector, but is needed for Boot2Qt compatibility)" + ${GAMMARAY_CORE_ONLY_LAUNCHER_DEFAULT} ) if(NOT HAVE_QT_WIDGETS AND NOT GAMMARAY_CORE_ONLY_LAUNCHER) message(FATAL_ERROR "Must CORE_ONLY_LAUNCHER when Qt Widgets are not available.")