blob: bf18b36265d43680ca21f4a4ad1cfc9f578d7bf4 [file] [log] [blame]
project('link with shared module', 'c')
if host_machine.system() != 'darwin'
error('MESON_SKIP_TEST test only fails on OSX')
endif
m = shared_module('mymodule', 'module.c')
e = executable('prog', 'prog.c', link_with : m)