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

gitlab.com/Remmina/remmina-plugins.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
commitdfecc7765866d89158c987d33a7baf94875017fc (patch)
tree7b6846328788f8f18ce224e44e76f206b76fbd81
parent0fab51dbc860d908e520cfb306bef68437aed911 (diff)
Make icon cache optional. Partly solve #1045
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 10dfc76..adf0ca9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,4 +49,6 @@ install(FILES
scalable/emblems/remmina-tool-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()