-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeson.build
48 lines (41 loc) · 887 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
47
48
project(
'ite-backlight', 'cpp',
default_options : [
'warning_level=3',
'cpp_std=c++17',
],
)
libusb_dep = dependency('libusb-1.0')
boost_dep = dependency('boost')
ite_backlight_dep = [libusb_dep, boost_dep]
ite_backlight_src = ['colour.cpp', 'speed.cpp', 'ite-device.cpp']
executable(
'ite-mono',
['mono.cpp', ite_backlight_src],
install : true,
dependencies : ite_backlight_dep
)
executable(
'ite-static',
['static.cpp', ite_backlight_src],
install : true,
dependencies : ite_backlight_dep
)
executable(
'ite-breathe',
['breathe.cpp', ite_backlight_src],
install : true,
dependencies : ite_backlight_dep
)
executable(
'ite-wave',
['wave.cpp', ite_backlight_src],
install : true,
dependencies : ite_backlight_dep
)
executable(
'ite-flash',
['flash.cpp', ite_backlight_src],
install : true,
dependencies : ite_backlight_dep
)