diff options
author | Pino Toscano <toscano.pino@tiscali.it> | 2021-05-27 22:37:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 22:37:24 +0200 |
commit | 192ea01eddbc7508055f855f2afc4dd397d992b1 (patch) | |
tree | 03b10cb8286af493d06cb57d0c0c6c5b9624fc63 /runtime | |
parent | 192f89ea1bdb86e8d12a9940872f92f0fc88b300 (diff) | |
download | rneovim-192ea01eddbc7508055f855f2afc4dd397d992b1.tar.gz rneovim-192ea01eddbc7508055f855f2afc4dd397d992b1.tar.bz2 rneovim-192ea01eddbc7508055f855f2afc4dd397d992b1.zip |
cmake: install app icon in XDG hicolor icon theme (#14656)
Install the icon of the application in the hicolor XDG icon theme;
this way it can be properly loaded by XDG menus in the currently set
XDG icon theme, without looking in the legacy pixmaps location.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index d66e04f5f2..4fdcfc0f33 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -111,7 +111,7 @@ if(NOT APPLE) install_helper( FILES ${CMAKE_CURRENT_SOURCE_DIR}/nvim.png - DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/pixmaps) + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/128x128/apps) endif() file(GLOB_RECURSE RUNTIME_PROGRAMS |