summaryrefslogtreecommitdiff
path: root/test cases/unit/39 external, internal library rpath/built library/meson.build
blob: f63399659d7d247cc4c19dbe55deacdb23558738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project('built library', 'c')

cc = meson.get_compiler('c')

if host_machine.system() != 'cygwin'
  # bar_in_system has undefined symbols, but still must be found
  bar_system_dep = cc.find_library('bar_in_system')
endif

foo_system_dep = cc.find_library('foo_in_system')

faa_pkg_dep = dependency('faa_pkg')

l = shared_library('bar_built', 'bar.c',
                   install: true,
                   dependencies : [foo_system_dep, faa_pkg_dep])

if host_machine.system() == 'darwin'
  e = executable('prog', 'prog.c', link_with: l, install: true)
  test('testprog', e)
endif