From 8f1cadbbf2f0ad7b13f300bc50d039738e43352d Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Fri, 27 Dec 2024 21:08:41 +1100 Subject: [PATCH] enable hardened runtime on macOS builds --- source/client/CMakeLists.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/client/CMakeLists.txt b/source/client/CMakeLists.txt index a6773d3..474f2f8 100644 --- a/source/client/CMakeLists.txt +++ b/source/client/CMakeLists.txt @@ -31,12 +31,16 @@ ADD_EXECUTABLE (starbound WIN32 $ $ $ $ ${star_client_HEADERS} ${star_client_SOURCES} ${star_client_RESOURCES}) -IF(STAR_PRECOMPILED_HEADERS) +IF (STAR_PRECOMPILED_HEADERS) TARGET_PRECOMPILE_HEADERS (starbound REUSE_FROM star_core) ENDIF() -IF(UNIX) - set_target_properties (starbound PROPERTIES LINK_FLAGS "-Wl,-rpath,'$ORIGIN'") +IF (UNIX) + SET_TARGET_PROPERTIES (starbound PROPERTIES LINK_FLAGS "-Wl,-rpath,'$ORIGIN'") +ENDIF() + +IF (STAR_SYSTEM_MACOS) + SET_TARGET_PROPERTIES (starbound PROPERTIES XCODE_ATTRIBUTE_ENABLE_HARDENED_RUNTIME YES) ENDIF() TARGET_LINK_LIBRARIES (starbound ${STAR_EXT_LIBS} ${STAR_EXT_GUI_LIBS})