blob: 579ea9b6e64689fc432769b04586ff4194d3d2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
project('cppmodules', 'cpp', default_options: ['cpp_std=c++latest'])
cpp = meson.get_compiler('cpp')
if cpp.get_id() == 'msvc'
subdir('vs')
elif cpp.get_id() == 'gcc'
subdir('gcc')
else
error('Unknown compiler')
endif
|