This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
forked from 9il/D-YAML
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeson.build
98 lines (80 loc) · 2.08 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
project('mir-yaml', 'd', version : '0.0.0', license: 'BSL-1.0')
description = 'YAML parser and emitter for the D programming language.'
subprojects = ['mir-core', 'mir-algorithm']
has_cpp_headers = false
sources_list = [
'mir/yaml/composer',
'mir/yaml/constructor',
'mir/yaml/dumper',
'mir/yaml/emitter',
'mir/yaml/escapes',
'mir/yaml/event',
'mir/yaml/exception',
'mir/yaml/linebreak',
'mir/yaml/loader',
'mir/yaml/package',
'mir/yaml/parser',
'mir/yaml/queue',
'mir/yaml/reader',
'mir/yaml/representer',
'mir/yaml/resolver',
'mir/yaml/scanner',
'mir/yaml/serializer',
'mir/yaml/tagdirective',
'mir/yaml/test/common',
'mir/yaml/test/compare',
'mir/yaml/test/constructor',
'mir/yaml/test/emitter',
'mir/yaml/test/errors',
'mir/yaml/test/inputoutput',
'mir/yaml/test/reader',
'mir/yaml/test/representer',
'mir/yaml/test/resolver',
'mir/yaml/test/tokens',
'mir/yaml/token',
]
sources = []
foreach s : sources_list
sources += 'source/' + s + '.d'
endforeach
add_project_arguments([
'-preview=dip1008',
'-lowmem',
], language: 'd')
required_deps = []
foreach p : subprojects
required_deps += dependency(p, fallback : [p, 'this_dep'])
endforeach
directories = ['source']
if has_cpp_headers
directories += 'include'
endif
directories = include_directories(directories)
this_lib = library(meson.project_name(),
sources,
include_directories: directories,
install: true,
version: meson.project_version(),
dependencies: required_deps,
)
this_dep = declare_dependency(
link_with: [this_lib],
include_directories: directories,
dependencies: required_deps,
)
test_versions = ['mir_yaml_test']
if has_cpp_headers
install_subdir('include/',
strip_directory :true,
install_dir: 'include/',
)
endif
install_subdir('source/',
strip_directory : true,
install_dir: 'include/d/' + meson.project_name(),
)
import('pkgconfig').generate(this_lib,
description: description,
subdirs: 'd/' + meson.project_name(),
)
test_subdirs = []