meson.build 197 B

123456
  1. project('D Static Library', 'd')
  2. lstatic = static_library('stuff', 'libstuff.d', install : true)
  3. es = executable('app_s', 'app.d', link_with : lstatic, install : true)
  4. test('linktest_static', es)