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
49
50
51
52
|
libdir_abs = join_paths(get_option('prefix'), get_option('libdir'))
datadir_abs = join_paths(get_option('prefix'), get_option('datadir'))
python_path = python3.path()
tools = [
['g-ir-scanner', 'scannermain', 'scanner_main'],
['g-ir-annotation-tool', 'annotationmain', 'annotation_main'],
]
if get_option('doctool')
tools += [['g-ir-doc-tool', 'docmain', 'doc_main']]
endif
tool_output = []
foreach tool : tools
tools_conf = configuration_data()
tools_conf.set('libdir', libdir_abs)
tools_conf.set('datarootdir', datadir_abs)
tools_conf.set('PYTHON', python_path)
tools_conf.set('TOOL_MODULE', tool[1])
tools_conf.set('TOOL_FUNCTION', tool[2])
tool_output += configure_file(
input: 'g-ir-tool-template.in',
output: tool[0],
configuration: tools_conf,
install: true,
install_dir: get_option('bindir'),
)
endforeach
girscanner = tool_output[0]
gircompiler = executable('g-ir-compiler', 'compiler.c',
dependencies: [
girepo_internals_dep,
girepo_dep,
],
install: true,
)
girgenerate = executable('g-ir-generate', 'generate.c',
dependencies: [
girepo_internals_dep,
girepo_dep,
],
install: true,
)
girinspect = executable('g-ir-inspect', 'g-ir-inspect.c',
dependencies: girepo_dep,
install: true,
)
|