-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
31 lines (28 loc) · 1.03 KB
/
meson.build
File metadata and controls
31 lines (28 loc) · 1.03 KB
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
# C Development Kit: Error
# ******************************************************************************
# * Project
# ******************************************************************************
project('cdk_error', 'c',
version: '0.0.1',
meson_version: '>=1.1',
default_options: [
'werror=true',
'c_std=c11',
],
)
# ******************************************************************************
# * Library
# ******************************************************************************
cdk_error_inc = include_directories('include')
# ******************************************************************************
# * Tests
# ******************************************************************************
if get_option('tests')
subdir('test')
endif
# ******************************************************************************
# * Example
# ******************************************************************************
if get_option('examples')
subdir('example')
endif