summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfosero <fosero@users.noreply.github.com>2018-02-23 22:23:05 +0100
committerfosero <fosero@users.noreply.github.com>2018-02-23 22:23:05 +0100
commit8a68efc5bc2b4c3f24ad4a41b1656f8557bb8b44 (patch)
treed4cc70744197ef00a387ec646c9eb8ea19034137
parent6085c29403e01b6142e5f721a6a998ff4ef428e9 (diff)
downloadlibgd-8a68efc5bc2b4c3f24ad4a41b1656f8557bb8b44.tar.gz
meson: Fix missing implicit dependency on gtk-hacks
Both main-icon-box and main-view need gtk-hacks during build time. Make these widgets depend on gtk-hacks by default.
-rw-r--r--libgd/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/libgd/meson.build b/libgd/meson.build
index c9c6d18..1d2c61f 100644
--- a/libgd/meson.build
+++ b/libgd/meson.build
@@ -11,7 +11,9 @@ private_c_args = [
'-DG_DISABLE_DEPRECATED',
]
-if get_option('with-gtk-hacks')
+if (get_option('with-gtk-hacks') or
+ get_option('with-main-icon-box') or
+ get_option('with-main-view'))
sources += [
'gd-icon-utils.c',
'gd-icon-utils.h',