forked from linuxmint/xapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
46 lines (38 loc) · 782 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
project('xapp',
'c',
version : '1.6.9'
)
gnome = import('gnome')
pkg = import('pkgconfig')
i18n = import('i18n')
cdata = configuration_data()
cdata.set('GETTEXT_PACKAGE', '"xapp"')
add_global_arguments([
'-Wunused',
'-Wimplicit-function-declaration'
],
language: 'c'
)
if not get_option('deprecated_warnings')
add_global_arguments([
'-Wno-deprecated-declarations',
'-Wno-deprecated',
'-Wno-declaration-after-statement',
],
language: 'c',
)
endif
c = configure_file(output : 'config.h',
configuration : cdata
)
top_inc = include_directories('.')
subdir('icons')
subdir('libxapp')
subdir('po')
subdir('pygobject')
subdir('schemas')
subdir('status-applets')
subdir('scripts')
if get_option('docs')
subdir('docs')
endif