blob: e7c30b1a617453ee318ef31b55b26459cbb7b6e8 [file] [log] [blame]
William A. Kennington III15982f62019-01-31 14:43:41 -08001project('stdplus', 'cpp',
2 version: '0.1', meson_version: '>=0.49.0',
3 default_options: [
4 'warning_level=3',
5 'werror=true',
6 'cpp_std=c++17'
7 ])
8
William A. Kennington III15982f62019-01-31 14:43:41 -08009subdir('src')
10
11build_tests = get_option('tests')
12build_examples = get_option('examples')
13
14if build_examples
15 subdir('example')
16endif
17if not build_tests.disabled()
18 subdir('test')
19endif