aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2023-04-15 21:41:29 +0200
committerselsta <selsta@sent.at>2023-04-15 21:41:29 +0200
commit5345dcc11b4d3ca39a438bd05dedfd42a21ff240 (patch)
treea7d096a96aefe6fb39e6e4a9b636fd09296087af /cmake
parentf650e963630f49b44a2ef16211f565555b9f159e (diff)
downloadmonzero-gui-5345dcc11b4d3ca39a438bd05dedfd42a21ff240.tar.gz
monzero-gui-5345dcc11b4d3ca39a438bd05dedfd42a21ff240.tar.xz
monzero-gui-5345dcc11b4d3ca39a438bd05dedfd42a21ff240.zip
cmake: add install_name_tool to fix svg rendering
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Deploy.cmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmake/Deploy.cmake b/cmake/Deploy.cmake
index 2168033b..234bfe31 100644
--- a/cmake/Deploy.cmake
+++ b/cmake/Deploy.cmake
@@ -17,7 +17,12 @@ if(APPLE OR (WIN32 AND NOT STATIC))
add_custom_command(TARGET deploy
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${_qt_svg_dylib} $<TARGET_FILE_DIR:monero-wallet-gui>/../PlugIns/imageformats/
- COMMENT "Copying libqsvg.dylib"
+ COMMAND ${CMAKE_INSTALL_NAME_TOOL} -change "${CMAKE_PREFIX_PATH}/lib/QtGui.framework/Versions/5/QtGui" "@executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui" $<TARGET_FILE_DIR:monero-wallet-gui>/../PlugIns/imageformats/libqsvg.dylib
+ COMMAND ${CMAKE_INSTALL_NAME_TOOL} -change "${CMAKE_PREFIX_PATH}/lib/QtWidgets.framework/Versions/5/QtWidgets" "@executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets" $<TARGET_FILE_DIR:monero-wallet-gui>/../PlugIns/imageformats/libqsvg.dylib
+ COMMAND ${CMAKE_INSTALL_NAME_TOOL} -change "${CMAKE_PREFIX_PATH}/lib/QtSvg.framework/Versions/5/QtSvg" "@executable_path/../Frameworks/QtSvg.framework/Versions/5/QtSvg" $<TARGET_FILE_DIR:monero-wallet-gui>/../PlugIns/imageformats/libqsvg.dylib
+ COMMAND ${CMAKE_INSTALL_NAME_TOOL} -change "${CMAKE_PREFIX_PATH}/lib/QtCore.framework/Versions/5/QtCore" "@executable_path/../Frameworks/QtCore.framework/Versions/5/QtCore" $<TARGET_FILE_DIR:monero-wallet-gui>/../PlugIns/imageformats/libqsvg.dylib
+ COMMENT "Copying libqsvg.dylib, running install_name_tool"
+
)
endif()