From 0c7fcd5a7a98eac73fd801b3d71fcbb26d218429 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sat, 14 Oct 2023 22:09:14 +0200 Subject: [PATCH] CMake: Fix USE_BUNDLE default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dea407f..6801e3e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -456,7 +456,7 @@ if(APPLE OR WIN32) else() set(USE_BUNDLE_DEFAULT OFF) endif() -option(USE_BUNDLE "Bundle dependencies" USE_BUNDLE_DEFAULT) +option(USE_BUNDLE "Bundle dependencies" ${USE_BUNDLE_DEFAULT}) if(NOT CMAKE_CROSSCOMPILING) # Check that we have Qt with sqlite driver