mirror of https://github.com/WerWolv/ImHex.git
build: Move plist property setting
This commit is contained in:
parent
164cb1285b
commit
568b7f5139
|
@ -163,8 +163,6 @@ macro(configurePackingResources)
|
||||||
else ()
|
else ()
|
||||||
set ( bundle_path "${CMAKE_BINARY_DIR}/ImHex.app" )
|
set ( bundle_path "${CMAKE_BINARY_DIR}/ImHex.app" )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set_property(TARGET main PROPERTY MACOSX_BUNDLE_INFO_PLIST ${MACOSX_BUNDLE_INFO_PLIST})
|
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
endmacro()
|
endmacro()
|
||||||
|
@ -261,7 +259,8 @@ macro(createPackage)
|
||||||
include(PostprocessBundle)
|
include(PostprocessBundle)
|
||||||
|
|
||||||
set_target_properties(libimhex PROPERTIES SOVERSION ${IMHEX_VERSION})
|
set_target_properties(libimhex PROPERTIES SOVERSION ${IMHEX_VERSION})
|
||||||
|
|
||||||
|
set_property(TARGET main PROPERTY MACOSX_BUNDLE_INFO_PLIST ${MACOSX_BUNDLE_INFO_PLIST})
|
||||||
|
|
||||||
# Fix rpath
|
# Fix rpath
|
||||||
add_custom_command(TARGET imhex_all POST_BUILD COMMAND ${CMAKE_INSTALL_NAME_TOOL} -add_rpath "@executable_path/../Frameworks/" $<TARGET_FILE:main>)
|
add_custom_command(TARGET imhex_all POST_BUILD COMMAND ${CMAKE_INSTALL_NAME_TOOL} -add_rpath "@executable_path/../Frameworks/" $<TARGET_FILE:main>)
|
||||||
|
|
Loading…
Reference in New Issue