Skip to content

Commit

Permalink
DolphinQt: Copy qt.conf into Binaries output folder on Steam Runtime …
Browse files Browse the repository at this point in the history
…buidls
  • Loading branch information
OatmealDome committed Mar 16, 2022
1 parent 4e52bc0 commit c5cf28c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/Core/DolphinQt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,12 @@ if (STEAM_RUNTIME)
COMMAND ${CMAKE_COMMAND} -E copy_directory "${Qt5_DIR}/../../../plugins/platforms" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/platforms"
)

# Copy qt.conf
target_sources(dolphin-emu PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/qt.conf")
add_custom_command(TARGET dolphin-emu POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/qt.conf" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/qt.conf"
)

# Mark all data files as resources
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/Data/Sys")
file(GLOB_RECURSE resources RELATIVE "${CMAKE_SOURCE_DIR}/Data" "${CMAKE_SOURCE_DIR}/Data/Sys/*")
Expand Down

0 comments on commit c5cf28c

Please sign in to comment.