summaryrefslogtreecommitdiffstats
path: root/test cases/unit/89 pkgconfig build rpath order/meson.build
blob: 76ed8de25d59a848524f8efc200e9ea4a2d27b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project('build rpath', 'c', 'cpp')

subdir('sub')
pkgconf_dep = dependency('dummy')

executable('prog', 'prog.c',
  dependencies : pkgconf_dep,
  link_with : l,
  build_rpath : '/foo/bar',
  install_rpath : '/baz',
  install : true,
  )

executable('progcxx', 'prog.cc',
  dependencies : pkgconf_dep,
  link_with : l,
  build_rpath : '/foo/bar',
  install_rpath : 'baz',
  install : true,
  )