blob: f23dec518a78b516a82fc9527926cef5695e89bd [file] [log] [blame]
William A. Kennington IIId4b33e92018-12-04 17:22:05 -08001project('sdeventplus', 'cpp',
William A. Kennington IIIbbd1b562020-02-20 15:15:19 -08002 version: '0.1', meson_version: '>=0.53.2',
William A. Kennington IIId4b33e92018-12-04 17:22:05 -08003 default_options: [
4 'warning_level=3',
5 'werror=true',
6 'cpp_std=c++17'
7 ])
8
William A. Kennington IIId4b33e92018-12-04 17:22:05 -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