Browse Source

build(room): simplify yuzu-room installation

CMake is able to automatically install binaries in the correct location. Also see my older patch, af94bf4a59

Cc: @FearlessTobi
pull/15/merge
Andrea Pappacoda 3 years ago
committed by GitHub
parent
commit
db88eaa346
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/dedicated_room/CMakeLists.txt

2
src/dedicated_room/CMakeLists.txt

@ -23,5 +23,5 @@ endif()
target_link_libraries(yuzu-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) target_link_libraries(yuzu-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
if(UNIX AND NOT APPLE) if(UNIX AND NOT APPLE)
install(TARGETS yuzu-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
install(TARGETS yuzu-room)
endif() endif()
Loading…
Cancel
Save