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
|
project(
'lease_manager', 'c',
# Version based on Semantic Versioning 2.0.0 (https://semver.org/)
version: '0.1.0',
default_options: [
'warning_level=2',
]
)
config = configuration_data()
pkg = import('pkgconfig')
compiler_flags = [
'-Wstrict-prototypes',
'-Wmissing-prototypes',
]
#Setup and create runtime path
runtime_path = join_paths(get_option('localstatedir'), get_option('runtime_subdir'))
config.set_quoted('DLM_DEFAULT_RUNTIME_PATH', runtime_path)
meson.add_install_script('sh', '-c', 'install -d $DESTDIR/$1', '_', runtime_path)
cc = meson.get_compiler('c')
add_project_arguments(
cc.get_supported_arguments(compiler_flags),
language: 'c'
)
configure_file(output: 'config.h',
configuration: config)
configuration_inc = include_directories('.')
drm_dep = dependency('libdrm', version: '>= 2.4.89')
thread_dep = dependency('threads')
toml_dep = dependency('libtoml')
enable_tests = get_option('enable-tests')
if enable_tests
check_dep = dependency('check')
# Default to the system provided version of fff.h.
# otherwise fetch it ourselves.
if cc.check_header('fff.h')
fff_dep = declare_dependency()
else
if meson.version().version_compare('>=0.55')
fff_proj = subproject('fff')
fff_dep = fff_proj.get_variable('fff_dep')
else
error('Update meson version to >=0.55 to enable unit testing')
endif
endif
endif
subdir('common')
subdir('libdlmclient')
subdir('drm-lease-manager')
subdir('examples')
|