summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Mai M2022-04-01 11:14:39 -0400
committerGravatar GitHub2022-04-01 11:14:39 -0400
commit4e4dbb68213ad0b448aba60acc91be94d1c11450 (patch)
tree560cad6cba34408e52226bdaaa4174759b97a666 /src
parentMerge pull request #8130 from zhaobot/tx-update-20220401030746 (diff)
parentbuild: cleanup installation of yuzu and yuzu-cmd (diff)
downloadyuzu-4e4dbb68213ad0b448aba60acc91be94d1c11450.tar.gz
yuzu-4e4dbb68213ad0b448aba60acc91be94d1c11450.tar.xz
yuzu-4e4dbb68213ad0b448aba60acc91be94d1c11450.zip
Merge pull request #8097 from Tachi107/build-cleanup-install
build: cleanup installation of yuzu and yuzu-cmd
Diffstat (limited to '')
-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)
293endif () 293endif ()
294 294
295if(UNIX AND NOT APPLE) 295if(UNIX AND NOT APPLE)
296 install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") 296 install(TARGETS yuzu)
297endif() 297endif()
298 298
299if (YUZU_USE_BUNDLED_QT) 299if (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)
45endif() 45endif()
46 46
47if(UNIX AND NOT APPLE) 47if(UNIX AND NOT APPLE)
48 install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") 48 install(TARGETS yuzu-cmd)
49endif() 49endif()
50 50
51if (MSVC) 51if (MSVC)