forked from mojyack/cutil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
22 lines (21 loc) · 1.04 KB
/
meson.build
File metadata and controls
22 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
project(
'cutil',
'cpp',
version: '0.0',
default_options: ['warning_level=3', 'werror=false', 'cpp_std=c++23'],
)
add_project_arguments('-Wfatal-errors', language: 'cpp')
executable('charconv-test', files('src/charconv-test.cpp'))
executable('variant-test', files('src/variant-test.cpp'))
executable('multi-event-test', files('src/multi-event-test.cpp'))
executable('pair-table-test', files('src/pair-table-test.cpp'))
executable('rcu-test', files('src/rcu-test.cpp'))
executable('argument-parser-test', files('src/argument-parser-test.cpp'))
executable('split-test', files('src/split-test.cpp'))
executable('random-test', files('src/random-test.cpp'))
executable('coroutine-test', files('src/coroutine-test.cpp'))
executable('comptime-string-test', files('src/comptime-string-test.cpp'))
executable('span-test', files('src/span-test.cpp'))
executable('light-map-test', files('src/light-map-test.cpp'))
executable('make-array-test', files('src/make-array-test.cpp'))
executable('prependable-buffer-test', files('src/prependable-buffer-test.cpp'))