summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorTom Schoonjans <Tom.Schoonjans@diamond.ac.uk>2019-10-11 08:55:12 +0100
committerTom Schoonjans <Tom.Schoonjans@diamond.ac.uk>2019-10-11 08:55:12 +0100
commitfa07007389c9662b654680464cf88d8894e4e64d (patch)
treec69959f57200747f3f6ab583cbbbaa4ea6fd2b43 /meson.build
parent043ec471bd63bba975446ac636de4d375cb29405 (diff)
downloadgtk+-fa07007389c9662b654680464cf88d8894e4e64d.tar.gz
meson: ensure plugins have so extension on macOS
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 60ef872f52..ba93dcc3f8 100644
--- a/meson.build
+++ b/meson.build
@@ -823,6 +823,11 @@ if profiler_enabled
endif
endif
+module_suffix = []
+if os_darwin
+ module_suffix = 'so'
+endif
+
build_gir = get_option('introspection')
subdir('gdk')
subdir('gtk')