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
312 B
11 lines
312 B
project('bitcode test', 'c', 'objc', 'objcpp', |
|
default_options : ['b_bitcode=true']) |
|
|
|
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')
|
|
|