forked from rib/gputop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
48 lines (39 loc) · 1.29 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
project('GPUTop', 'c', 'cpp',
version : '0.0.2',
default_options : [
'warning_level=2',
'c_std=gnu99',
'default_library=static',
],
license : 'MIT',
meson_version : '>= 0.44.0')
add_project_arguments(['-Wno-unused-parameter',
'-Wno-sign-compare'],
language: ['c', 'cpp'])
protobuf_c_dep = subproject('protobuf-c').get_variable('protobuf_c_dep')
c = meson.get_compiler('c')
cc = meson.get_compiler('cpp')
prog_python2 = find_program('python2')
build_native_ui = get_option('native_ui')
build_webui = get_option('webui')
if build_webui and build_native_ui
error('Cannot build webui and native tools in the same build')
endif
if meson.is_cross_build()
protoc_c = subproject('protobuf-c').get_variable('protoc_c_native')
leg = subproject('peg').get_variable('leg_native')
else
protoc_c = subproject('protobuf-c').get_variable('protoc_c')
leg = subproject('peg').get_variable('leg')
endif
subdir('mesa')
subdir('lib')
if not build_webui
libuv_dep = subproject('libuv').get_variable('libuv_dep')
wslay_dep = subproject('wslay').get_variable('wslay_dep')
h2o_dep = subproject('h2o').get_variable('h2o_dep')
subdir('server')
subdir('wrapper')
subdir('utils')
endif
subdir('ui')