mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-06 06:45:05 +01:00
11 lines
375 B
CMake
11 lines
375 B
CMake
include(BundleUtilities)
|
|
|
|
# Use generator expressions to get the absolute path to the bundle and frameworks
|
|
set(APPS "Zelda64Recompiled.app/Contents/MacOS/Zelda64Recompiled")
|
|
set(DIRS "Zelda64Recompiled.app/Contents/Frameworks")
|
|
|
|
# The fixup_bundle command needs an absolute path
|
|
file(REAL_PATH ${APPS} APPS)
|
|
file(REAL_PATH ${DIRS} DIRS)
|
|
|
|
fixup_bundle("${APPS}" "" "${DIRS}") |