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