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 /data/icons/CMakeLists.txt
parentea7a5cda8baf497ed7a1fdcf6abe5a490d572a32 (diff)
Make icon cache optional. Partly solve #1045
Diffstat (limited to 'data/icons/CMakeLists.txt')
-rw-r--r--data/icons/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/data/icons/CMakeLists.txt b/data/icons/CMakeLists.txt
index dcce13eb5..b74f6ad09 100644
--- a/data/icons/CMakeLists.txt
+++ b/data/icons/CMakeLists.txt
@@ -66,4 +66,6 @@ set(APPICONSCALE_EMBLEMS_DATA
install(FILES ${APPICONSCALE_ACTIONS_DATA} DESTINATION ${APPICONSCALE_ACTIONS_DIR})
install(FILES ${APPICONSCALE_EMBLEMS_DATA} 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()