summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-07-09 21:19:02 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-07-09 21:19:02 +0200
commit7c51bc44aabc4be0fbc26761637b56d6bf35da55 (patch)
treeaf01c6b5baf567fb7ab085842c17568982537604 /src/citra_qt
parentMerge pull request #906 from aroulin/loader-format-specifier-warning (diff)
downloadyuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar.gz
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar.bz2
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar.lz
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar.xz
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.tar.zst
yuzu-7c51bc44aabc4be0fbc26761637b56d6bf35da55.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt
index c2d1ad240..d4c0cecc3 100644
--- a/src/citra_qt/CMakeLists.txt
+++ b/src/citra_qt/CMakeLists.txt
@@ -73,7 +73,9 @@ target_link_libraries(citra-qt core common video_core qhexedit)
target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS})
target_link_libraries(citra-qt ${PLATFORM_LIBRARIES})
-#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
+if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
+ install(TARGETS citra-qt RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
+endif()
if (Qt5_FOUND AND MSVC)
set(Qt5_DLL_DIR "${Qt5_DIR}/../../../bin")