summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Andrea Pappacoda2022-09-22 21:51:56 +0200
committerGravatar GitHub2022-09-22 21:51:56 +0200
commitdb88eaa346f32f0c42bb38981e61af180ded3bcb (patch)
tree8902ab0dcce0e2595a891159b250a747b165122f /src
parentMerge pull request #8849 from Morph1984/parallel-astc (diff)
downloadyuzu-db88eaa346f32f0c42bb38981e61af180ded3bcb.tar.gz
yuzu-db88eaa346f32f0c42bb38981e61af180ded3bcb.tar.xz
yuzu-db88eaa346f32f0c42bb38981e61af180ded3bcb.zip
build(room): simplify yuzu-room installation
CMake is able to automatically install binaries in the correct location. Also see my older patch, https://github.com/yuzu-emu/yuzu/commit/af94bf4a594b6a3599fae1d78e5d283b9f602032 Cc: @FearlessTobi
Diffstat (limited to 'src')
-rw-r--r--src/dedicated_room/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt
index 1efdbc1f7..2d9731f19 100644
--- a/src/dedicated_room/CMakeLists.txt
+++ b/src/dedicated_room/CMakeLists.txt
@@ -23,5 +23,5 @@ endif()
23target_link_libraries(yuzu-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) 23target_link_libraries(yuzu-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
24 24
25if(UNIX AND NOT APPLE) 25if(UNIX AND NOT APPLE)
26 install(TARGETS yuzu-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") 26 install(TARGETS yuzu-room)
27endif() 27endif()