mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
DolphinQt: Copy all Qt libraries into Binaries output folder on Steam builds for Linux
This commit is contained in:
parent
6b05f5cca8
commit
77fb5fa7dc
1 changed files with 6 additions and 0 deletions
|
@ -620,6 +620,12 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND STEAM)
|
||||||
BUILD_WITH_INSTALL_RPATH true
|
BUILD_WITH_INSTALL_RPATH true
|
||||||
INSTALL_RPATH "\$ORIGIN/lib"
|
INSTALL_RPATH "\$ORIGIN/lib"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_custom_command(TARGET dolphin-emu POST_BUILD
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib"
|
||||||
|
COMMAND cp -P "${QT_DIR}/../../*.so*" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib"
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E copy_directory "${QT_DIR}/../../../plugins/platforms" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/platforms"
|
||||||
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(USE_MGBA)
|
if(USE_MGBA)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue