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.
10 lines
361 B
10 lines
361 B
8 years ago
|
project('Mixing C and D', 'd', 'c')
|
||
|
|
||
|
ldyn = shared_library('stuff', 'libstuff.c', install : true)
|
||
|
ed = executable('appdc_d', 'app.d', link_with : ldyn, install : true)
|
||
|
test('linktest_cdyn', ed)
|
||
|
|
||
|
lstatic = static_library('stuff', 'libstuff.c', install : true)
|
||
|
es = executable('appdc_s', 'app.d', link_with : lstatic, install : true)
|
||
|
test('linktest_cstatic', es)
|