-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
48 lines (40 loc) · 846 Bytes
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
project('kodo.inotify', 'c')
python = import('python').find_installation('python3', pure: false)
link_args = [
'-flinker-output=rel',
]
# If enabled add flags to check all extension functions are provided by the
# platform implementation
if not get_option('check-all-defined').disabled()
link_args += [
'-Wl,--no-undefined',
'-lpython@0@'.format(python.language_version()),
]
endif
docstrings = custom_target(
'docstrings',
input: [
'scripts/generate-docstrings.py',
'src/event.c',
'src/module.c',
],
output: ['docstrings.h'],
command: [python, '@INPUT@', '@OUTPUT@'],
)
python.install_sources(
'src/inotify.pyi',
subdir: 'kodo',
)
python.extension_module(
'inotify',
[
'src/inotify.c',
'src/event.c',
'src/flag.c',
'src/module.c',
docstrings,
],
subdir: 'kodo',
install: true,
link_args: link_args,
)