summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Pappacoda <andrea@pappacoda.it>2022-03-27 15:09:03 +0200
committerAndrea Pappacoda <andrea@pappacoda.it>2022-03-27 15:10:24 +0200
commitaf94bf4a594b6a3599fae1d78e5d283b9f602032 (patch)
tree4115b984a80090cefc4c7d74bc4036183e27c3c8
parentMerge pull request #8088 from bunnei/fixup-nvflinger (diff)
downloadyuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar.gz
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar.bz2
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar.lz
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar.xz
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.tar.zst
yuzu-af94bf4a594b6a3599fae1d78e5d283b9f602032.zip
-rw-r--r--src/yuzu/CMakeLists.txt2
-rw-r--r--src/yuzu_cmd/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt
index 30902101d..b1467d016 100644
--- a/src/yuzu/CMakeLists.txt
+++ b/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)
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
index 74fc24972..c8901f2df 100644
--- a/src/yuzu_cmd/CMakeLists.txt
+++ b/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)