Browse Source

Merge pull request #8097 from Tachi107/build-cleanup-install

build: cleanup installation of yuzu and yuzu-cmd
pull/15/merge
Mai M 4 years ago
committed by GitHub
parent
commit
4e4dbb6821
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/yuzu/CMakeLists.txt
  2. 2
      src/yuzu_cmd/CMakeLists.txt

2
src/yuzu/CMakeLists.txt

@ -293,7 +293,7 @@ if (YUZU_USE_QT_WEB_ENGINE)
endif ()
if(UNIX AND NOT APPLE)
install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
install(TARGETS yuzu)
endif()
if (YUZU_USE_BUNDLED_QT)

2
src/yuzu_cmd/CMakeLists.txt

@ -45,7 +45,7 @@ if (YUZU_USE_EXTERNAL_SDL2)
endif()
if(UNIX AND NOT APPLE)
install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
install(TARGETS yuzu-cmd)
endif()
if (MSVC)

Loading…
Cancel
Save