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.
17 lines
371 B
17 lines
371 B
6 years ago
|
project('mainproj', 'c',
|
||
|
default_options : ['wrap_mode=nodownload'],
|
||
|
)
|
||
7 years ago
|
|
||
|
subproject('zlib')
|
||
5 years ago
|
foo = subproject('foo')
|
||
|
bar = subproject('bar')
|
||
|
|
||
|
libfoo = foo.get_variable('libfoo')
|
||
|
libbar = bar.get_variable('libbar')
|
||
7 years ago
|
|
||
|
executable('grabprog', files('src/subprojects/prog.c'))
|
||
|
executable('grabprog2', files('src/subprojects/foo/prog2.c'))
|
||
|
subdir('src')
|
||
5 years ago
|
|
||
|
subproject('patchdir')
|