summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: 064ebf60d9fd7bd0c3bcb150529c41f2dc3539d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project('stdplus', 'cpp',
        version: '0.1', meson_version: '>=0.49.0',
        default_options: [
          'warning_level=3',
          'werror=true',
          'cpp_std=c++17'
        ])

includes = include_directories('src')

subdir('src')

build_tests = get_option('tests')
build_examples = get_option('examples')

if build_examples
  subdir('example')
endif
if not build_tests.disabled()
  subdir('test')
endif
OpenPOWER on IntegriCloud