summaryrefslogtreecommitdiff
path: root/giscanner
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner')
-rw-r--r--giscanner/meson.build9
1 files changed, 8 insertions, 1 deletions
diff --git a/giscanner/meson.build b/giscanner/meson.build
index e9f75e73..6ac74aaf 100644
--- a/giscanner/meson.build
+++ b/giscanner/meson.build
@@ -81,12 +81,19 @@ giscanner_lib = static_library('giscanner',
dependencies: [glib_dep, gobject_dep, gio_dep, gmodule_dep],
)
+# https://github.com/mesonbuild/meson/issues/4117
+if host_machine.system() == 'windows'
+ python_ext_dep = python.dependency()
+else
+ python_ext_dep = python.dependency().partial_dependency(compile_args: true)
+endif
+
giscanner_pymod = python.extension_module('_giscanner', ['giscannermodule.c'],
link_with: giscanner_lib,
c_args: [gi_hidden_visibility_cflags],
include_directories : configinc,
dependencies: [glib_dep, gobject_dep, gio_dep, gmodule_dep,
- python.dependency()],
+ python_ext_dep],
install: true,
install_dir: giscannerdir,
)