summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar KAMiKAZOW2018-01-26 04:00:12 +0100
committerGravatar GitHub2018-01-26 04:00:12 +0100
commit9e41053eade79b74aeff6d89a0c186569b264d79 (patch)
treeaaaac3cd474a7099cbf10f48de3fac7fc5bf8f7a
parentMerge pull request #142 from bunnei/improve-time (diff)
downloadyuzu-9e41053eade79b74aeff6d89a0c186569b264d79.tar.gz
yuzu-9e41053eade79b74aeff6d89a0c186569b264d79.tar.xz
yuzu-9e41053eade79b74aeff6d89a0c186569b264d79.zip
Install Linux icon in hicolor instead of pixmaps
hicolor is the preferred location for applications. See https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#directory_layout Same as https://github.com/citra-emu/citra/pull/3007
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5e904a53f..b04e99346 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -423,7 +423,7 @@ if(ENABLE_QT AND UNIX AND NOT APPLE)
423 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.desktop" 423 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.desktop"
424 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications") 424 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
425 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.svg" 425 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.svg"
426 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/pixmaps") 426 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps")
427 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.xml" 427 install(FILES "${CMAKE_SOURCE_DIR}/dist/yuzu.xml"
428 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/mime/packages") 428 DESTINATION "${CMAKE_INSTALL_PREFIX}/share/mime/packages")
429endif() 429endif()