The Meson Build System
http://mesonbuild.com/
10 lines
216 B
10 lines
216 B
5 years ago
|
project('extract subproject object', 'c')
|
||
|
|
||
|
sub = subproject('sub_project')
|
||
|
lib = sub.get_variable('lib')
|
||
|
|
||
|
exe = executable('exe', 'main.c',
|
||
|
objects : lib.extract_objects('sub_lib.c'))
|
||
|
|
||
|
test('extraction test', exe)
|