blob: eacb21499effd199a8fe4e46cecd0c20772bd064 [file] [log] [blame]
William A. Kennington III9b171d92021-04-16 13:29:44 -07001project(
2 'stdplus',
3 'cpp',
4 version: '0.1',
5 meson_version: '>=0.53.2',
6 default_options: [
7 'warning_level=3',
William A. Kennington III9b171d92021-04-16 13:29:44 -07008 'cpp_std=c++17',
9 'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
10 'examples=' + (meson.is_subproject() ? 'false' : 'true'),
11 ])
William A. Kennington III15982f62019-01-31 14:43:41 -080012
William A. Kennington III15982f62019-01-31 14:43:41 -080013subdir('src')
14
15build_tests = get_option('tests')
16build_examples = get_option('examples')
17
18if build_examples
19 subdir('example')
20endif
21if not build_tests.disabled()
22 subdir('test')
23endif