mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
DolphinQt: Copy all Qt libraries into Binaries output folder on Steam builds for Linux
This commit is contained in:
parent
6b05f5cca8
commit
77fb5fa7dc
@ -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…
x
Reference in New Issue
Block a user