blob: 5335a0df25d38c652612aaf029032b56fcc17769 [file] [log] [blame]
project('test-masm', 'c')
cc = meson.get_compiler('c')
# MASM must be found when using MSVC, otherwise it is optional
if not add_languages('masm', required: cc.get_argument_syntax() == 'msvc')
error('MESON_SKIP_TEST: masm not available')
endif
executable('app', 'hello.masm')