Merge pull request #4814 from ligfx/fixdeploy

CMake: actually call deploy-mac.py, don't just echo it
This commit is contained in:
Mat M 2017-02-03 12:27:55 -05:00 committed by GitHub
commit 2e2eabdfcb
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ if(wxWidgets_FOUND)
# Update library references to make the bundle portable
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
COMMAND echo "Fixing up application bundle: ${BUNDLE_PATH}"
COMMAND echo ${CMAKE_SOURCE_DIR}/Tools/deploy-mac.py $<TARGET_FILE_DIR:${DOLPHIN_EXE}>/../..
COMMAND ${CMAKE_SOURCE_DIR}/Tools/deploy-mac.py $<TARGET_FILE_DIR:${DOLPHIN_EXE}>/../..
)