1project('generated_dll_module_defs', 'c')
2
3if meson.backend().startswith('vs')
4  # FIXME: Broken on the VS backends
5  error('MESON_SKIP_TEST see https://github.com/mesonbuild/meson/issues/1799')
6endif
7
8subdir('subdir')
9exe = executable('prog', 'prog.c', link_with : shlib)
10test('runtest', exe)
11