-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
124 lines (113 loc) · 2.26 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
project(
'oresat-canopend',
'c',
version : '0', # run_command('git', 'describe').stdout.strip(),
license: 'GPL-3.0',
default_options : [
'warning_level=3',
'strip=true',
]
)
build_args = [
'-DCO_DRIVER_CUSTOM',
'-DCO_MULTIPLE_OD',
'-DPROJECT_NAME="' + meson.project_name() + '"',
'-DPROJECT_VERSION="' + meson.project_version() + '"',
]
subdir('src')
project_target = executable(
meson.project_name(),
'src/main.c',
link_with: [
libcanopenlinux,
libcommon,
libodextensions,
],
dependencies: [
libcommon_dep,
libcanopenlinux_dep,
libodextensions_dep,
],
install: true,
c_args: build_args,
)
subdir('scripts')
project_target = executable(
'oresat-sdo-read',
'scripts/sdo_read_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
project_target = executable(
'oresat-sdo-write',
'scripts/sdo_write_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
project_target = executable(
'oresat-os-command',
'scripts/os_command_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
project_target = executable(
'oresat-fwrite',
'scripts/fwrite_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
project_target = executable(
'oresat-fread',
'scripts/fread_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
project_target = executable(
'oresat-fcache-list',
'scripts/fcache_list_main.c',
link_with: libsdoclientnode,
dependencies: [
libcanopenlinux_dep,
libcommon_dep,
libodextensions_dep,
libsdoclientnode_dep
],
install: false,
c_args: build_args,
)
subdir('tests')