forked from 5G-MAG/rt-data-collection-application-function
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
30 lines (24 loc) · 860 Bytes
/
meson.build
File metadata and controls
30 lines (24 loc) · 860 Bytes
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
# License: 5G-MAG Public License (v1.0)
# Copyright: (C) 2024 British Broadcasting Corporation
#
# For full license terms please see the LICENSE file distributed with this
# program. If this file is missing then the license can be retrieved from
# https://drive.google.com/file/d/1cinCiA778IErENZ3JN52VFW-1ffHpx7Z/view
# Meson module fs and its functions like fs.hash_file require atleast meson 0.59.0
project('rt-data-collection-application-function', 'c', 'cpp',
version : '1.0.0',
license : '5G-MAG Public',
meson_version : '>= 0.63.0',
default_options : [
'c_std=gnu99',
'cpp_std=gnu++17',
],
)
open5gs_project=subproject('open5gs', required: true)
subdir('lib')
subdir('src')
systemd_path_cmd = find_program('systemd-path', required: false)
if systemd_path_cmd.found()
subdir('systemd')
endif
subdir('tests')