meson.build 183 B

12345678
  1. project('dll_module_defs', 'c')
  2. if meson.get_compiler('c').get_id() == 'msvc'
  3. subdir('subdir')
  4. exe = executable('prog', 'prog.c', link_with : shlib)
  5. test('runtest', exe)
  6. endif