Fix: [bundle] custom launch.sh is no longer required for Mac OS

Co-authored-by: Owen Rudge <owen@owenrudge.net>
This commit is contained in:
Patric Stout
2020-12-12 16:29:09 +01:00
committed by Patric Stout
parent 2714e0a33f
commit 7cdf7c7ca0
3 changed files with 6 additions and 11 deletions

View File

@@ -7,7 +7,11 @@ if(OPTION_INSTALL_FHS)
set(DOCS_DESTINATION_DIR "${CMAKE_INSTALL_DOCDIR}")
set(MAN_DESTINATION_DIR "${CMAKE_INSTALL_MANDIR}")
else()
set(BINARY_DESTINATION_DIR ".")
if(APPLE)
set(BINARY_DESTINATION_DIR "../MacOS")
else()
set(BINARY_DESTINATION_DIR ".")
endif()
set(DATA_DESTINATION_DIR ".")
set(DOCS_DESTINATION_DIR ".")
set(MAN_DESTINATION_DIR ".")