aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-03-23 14:38:58 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2022-04-16 18:13:12 +0200
commit6ed130fc1610da8d66ed17be9446e8f53bf96db5 (patch)
treefcbacf3bd6e8ed0d2999ab56d69b3d5cdbe9c970 /CMakeLists.txt
parent90d4acd1a1c9abeb31548d152c155491e2cf98fa (diff)
downloadPrismLauncher-6ed130fc1610da8d66ed17be9446e8f53bf96db5.tar.gz
PrismLauncher-6ed130fc1610da8d66ed17be9446e8f53bf96db5.tar.bz2
PrismLauncher-6ed130fc1610da8d66ed17be9446e8f53bf96db5.zip
fix: don't allow portable builds on macOS
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cf06fe0d..5061de3b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -169,8 +169,10 @@ add_subdirectory(program_info)
# Target install directory, relative to CMAKE_INSTALL_PREFIx
set(BUNDLE_DEST_DIR ".")
-# Install "portable.txt" if selected component is "portable"
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/${Launcher_Portable_File}" DESTINATION ${BUNDLE_DEST_DIR} COMPONENT portable EXCLUDE_FROM_ALL)
+if(NOT (UNIX AND APPLE))
+ # Install "portable.txt" if selected component is "portable"
+ install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/${Launcher_Portable_File}" DESTINATION ${BUNDLE_DEST_DIR} COMPONENT portable EXCLUDE_FROM_ALL)
+endif()
if(UNIX AND APPLE)
set(BINARY_DEST_DIR "${Launcher_Name}.app/Contents/MacOS")