diff options
author | Tom Schoonjans <Tom.Schoonjans@diamond.ac.uk> | 2019-10-11 08:55:12 +0100 |
---|---|---|
committer | Tom Schoonjans <Tom.Schoonjans@diamond.ac.uk> | 2019-10-11 08:55:12 +0100 |
commit | fa07007389c9662b654680464cf88d8894e4e64d (patch) | |
tree | c69959f57200747f3f6ab583cbbbaa4ea6fd2b43 /meson.build | |
parent | 043ec471bd63bba975446ac636de4d375cb29405 (diff) | |
download | gtk+-fa07007389c9662b654680464cf88d8894e4e64d.tar.gz |
meson: ensure plugins have so extension on macOS
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
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') |