mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-03 03:54:28 -05:00
4fa78be3ad
For whatever reason, the previous way would inject backslashes into any path that has spaces.
46 lines
1.8 KiB
CMake
46 lines
1.8 KiB
CMake
# This module can be used in two different ways.
|
|
#
|
|
# When invoked as `cmake -P DolphinPostprocessBundle.cmake`, it fixes up an
|
|
# application folder to be standalone. It bundles all required libraries from
|
|
# the system and fixes up library IDs. Any additional shared libraries, like
|
|
# plugins, that are found under Contents/MacOS/ will be made standalone as well.
|
|
#
|
|
# When called with `include(DolphinPostprocessBundle)`, it defines a helper
|
|
# function `dolphin_postprocess_bundle` that sets up the command form of the
|
|
# module as a post-build step.
|
|
|
|
if(CMAKE_GENERATOR)
|
|
# Being called as include(DolphinPostprocessBundle), so define a helper function.
|
|
set(_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION "${CMAKE_CURRENT_LIST_FILE}")
|
|
function(dolphin_postprocess_bundle target)
|
|
add_custom_command(TARGET ${target} POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} "-D" "DOLPHIN_BUNDLE_PATH=$<TARGET_BUNDLE_DIR:${target}>"
|
|
-P "${_DOLPHIN_POSTPROCESS_BUNDLE_MODULE_LOCATION}"
|
|
)
|
|
endfunction()
|
|
return()
|
|
endif()
|
|
|
|
message(STATUS "Fixing up application bundle: ${DOLPHIN_BUNDLE_PATH}")
|
|
|
|
# Make sure to fix up any additional shared libraries (like plugins) that are
|
|
# needed.
|
|
file(GLOB_RECURSE extra_libs "${DOLPHIN_BUNDLE_PATH}/Contents/MacOS/*.dylib")
|
|
|
|
# BundleUtilities doesn't support DYLD_FALLBACK_LIBRARY_PATH behavior, which
|
|
# makes it sometimes break on libraries that do weird things with @rpath. Specify
|
|
# equivalent search directories until https://gitlab.kitware.com/cmake/cmake/issues/16625
|
|
# is fixed and in our minimum CMake version.
|
|
set(extra_dirs "/usr/local/lib" "/lib" "/usr/lib")
|
|
|
|
# BundleUtilities is overly verbose, so disable most of its messages
|
|
function(message)
|
|
if(NOT ARGV MATCHES "^STATUS;")
|
|
_message(${ARGV})
|
|
endif()
|
|
endfunction()
|
|
|
|
include(BundleUtilities)
|
|
set(BU_CHMOD_BUNDLE_ITEMS ON)
|
|
fixup_bundle("${DOLPHIN_BUNDLE_PATH}" "${extra_libs}" "${extra_dirs}")
|