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
270 B
11 lines
270 B
6 years ago
|
project('bitcode test', 'c', 'objc', 'objcpp')
|
||
|
|
||
|
both_libraries('alib', 'libfoo.m')
|
||
|
shared_module('amodule', 'libfoo.m')
|
||
|
|
||
|
both_libraries('blib', 'libbar.mm')
|
||
|
shared_module('bmodule', 'libbar.mm')
|
||
|
|
||
|
both_libraries('clib', 'libfile.c')
|
||
|
shared_module('cmodule', 'libfile.c')
|