Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-07-31 02:56:49 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-07-31 02:56:49 +0300
commit06e9f4bb7fdb3b4dbb76066899fd9d286ff27b9b (patch)
treeb90c8d1bb16eea615d332d0ab532442e85f8f226 /plugins/nx
parentea7a5cda8baf497ed7a1fdcf6abe5a490d572a32 (diff)
Make icon cache optional. Partly solve #1045
Diffstat (limited to 'plugins/nx')
-rw-r--r--plugins/nx/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/nx/CMakeLists.txt b/plugins/nx/CMakeLists.txt
index 39644dbaf..604c0a20e 100644
--- a/plugins/nx/CMakeLists.txt
+++ b/plugins/nx/CMakeLists.txt
@@ -61,4 +61,6 @@ install(FILES
scalable/emblems/remmina-nx-symbolic.svg
DESTINATION ${APPICONSCALE_EMBLEMS_DIR})
-gtk_update_icon_cache("${REMMINA_DATADIR}/icons/hicolor")
+if(WITH_ICON_CACHE)
+ gtk_update_icon_cache("${REMMINA_DATADIR}/icons/hicolor")
+endif()