-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeson.build
44 lines (39 loc) · 1.02 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
project('example-vala', ['c', 'vala'],
version: '0.1.0',
meson_version: '>= 0.60.0',
)
plugin_name = meson.project_name()
vala_compiler = meson.get_compiler('vala')
vapi_dir = meson.current_source_dir() / 'vapi'
# Load custom vapi files
add_project_arguments(
[ '--vapidir', vapi_dir ],
language: 'vala'
)
# Load libide headers
plugin_inc = include_directories(
'include/libide',
'include/libide/code',
'include/libide/core',
'include/libide/debugger',
'include/libide/editor',
'include/libide/foundry',
'include/libide/greeter',
'include/libide/gtk',
'include/libide/gui',
'include/libide/io',
'include/libide/lsp',
'include/libide/plugins',
'include/libide/projects',
'include/libide/search',
'include/libide/sourceview',
'include/libide/terminal',
'include/libide/threading',
'include/libide/tree',
'include/libide/tweaks',
'include/libide/vcs',
'include/libide/webkit',
'include/webkitgtk-6.0',
)
subdir('data')
subdir('src')