The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
232 B

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