aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-03-18 11:38:13 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2022-03-18 11:38:13 +0100
commit2d1f99b765ef0870c2a78db890c673bb6d0bbcae (patch)
tree71fa59acfdc5ab0afb466aaaceaaed0e52770790 /CMakeLists.txt
parentacdb54b88e0fbdcb46aba3ed3d90e8b7fed08357 (diff)
downloadPrismLauncher-2d1f99b765ef0870c2a78db890c673bb6d0bbcae.tar.gz
PrismLauncher-2d1f99b765ef0870c2a78db890c673bb6d0bbcae.tar.bz2
PrismLauncher-2d1f99b765ef0870c2a78db890c673bb6d0bbcae.zip
fix: make Launcher_PORTABLE work on all platforms
Fixes #261
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7cd0cf86..7537703c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -152,6 +152,10 @@ add_subdirectory(program_info)
# Install the build results according to platform
set(Launcher_PORTABLE 1 CACHE BOOL "The type of installation (Portable or System)")
+if (Launcher_PORTABLE)
+ # launcher/Application.cpp will use this value
+ set(Launcher_APP_BINARY_DEFS "-DLAUNCHER_PORTABLE")
+endif()
if(UNIX AND APPLE)
set(BINARY_DEST_DIR "${Launcher_Name}.app/Contents/MacOS")
@@ -191,9 +195,6 @@ elseif(UNIX)
set(BUNDLE_DEST_DIR ".")
set(JARS_DEST_DIR "bin/jars")
- # launcher/Application.cpp will use this value
- set(Launcher_APP_BINARY_DEFS "-DLAUNCHER_PORTABLE")
-
# Install basic runner script
configure_file(launcher/Launcher.in "${CMAKE_CURRENT_BINARY_DIR}/LauncherScript" @ONLY)
install(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/LauncherScript" DESTINATION ${BUNDLE_DEST_DIR} RENAME ${Launcher_Name})