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
commitaa3ee84746572ffdfe60935acc01c5b8d1961565 (patch)
treeb4eb0f7c90d6eb3d3922ab9a18d40a1f018176a3
parente67418603accac0587b2f70258fdf2b8a9ed5145 (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 39644db..604c0a2 100644
--- a/CMakeLists.txt
+++ b/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()