kasunath | 7ffd30a | 2022-05-10 18:11:34 -0700 | [diff] [blame] | 1 | project( |
2 | 'libbej', | ||||
3 | 'c', | ||||
4 | 'cpp', | ||||
5 | version: '0.1', | ||||
6 | meson_version: '>=0.57.0', | ||||
7 | default_options: [ | ||||
8 | 'c_std=c18', | ||||
9 | 'cpp_std=c++20', | ||||
10 | 'werror=true', | ||||
11 | 'warning_level=3', | ||||
12 | ]) | ||||
13 | |||||
14 | libbej_incs = include_directories('include') | ||||
15 | subdir('src') | ||||
16 | if not get_option('tests').disabled() | ||||
17 | subdir('test') | ||||
18 | endif |