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.
13 lines
326 B
13 lines
326 B
project('pch test', 'c', 'cpp') |
|
|
|
subdir('c') |
|
subdir('cpp') |
|
subdir('generated') |
|
subdir('userDefined') |
|
subdir('withIncludeDirectories') |
|
|
|
if meson.backend() == 'xcode' |
|
warning('Xcode backend only supports one precompiled header per target. Skipping "mixed" which has various precompiled headers.') |
|
else |
|
subdir('mixed') |
|
endif
|
|
|