aboutsummaryrefslogtreecommitdiff
path: root/test cases/failing/74 link with shared module on osx/meson.build
blob: bf18b36265d43680ca21f4a4ad1cfc9f578d7bf4 (plain)
1
2
3
4
5
6
7
8
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)