diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-06 16:59:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 16:59:04 -0700 |
commit | bb86fc573f76162cc60e6b81b9924df74eedb797 (patch) | |
tree | 04c1efe6aa93190f2462a922f3d02713f6ffd1cb /src | |
parent | 1effa578f12f79d7816e3543291f302f126cc1d2 (diff) | |
parent | db88eaa346f32f0c42bb38981e61af180ded3bcb (diff) |
Merge pull request #8944 from Tachi107/patch-2
build(room): simplify yuzu-room installation
Diffstat (limited to 'src')
-rw-r--r-- | src/dedicated_room/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt index 1efdbc1f76..2d9731f193 100644 --- a/src/dedicated_room/CMakeLists.txt +++ b/src/dedicated_room/CMakeLists.txt @@ -23,5 +23,5 @@ endif() target_link_libraries(yuzu-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) if(UNIX AND NOT APPLE) - install(TARGETS yuzu-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") + install(TARGETS yuzu-room) endif() |