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
commit2fd4bbbee01a75c93e699ed59dfdfc83aa3f6558 (patch)
tree548dc3980cb0daf6765c548a76eeb49e97e92f10
parent30a0ca9dade2a7da4485958a6a1a914ff58b3801 (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 57da9b4..f353e25 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,4 +49,6 @@ install(FILES
scalable/emblems/remmina-xdmcp-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()