summaryrefslogtreecommitdiffstats
path: root/test cases/unit/10 build_rpath/meson.build
blob: c0bc3bd2703f8063df579c11520cf66d6396236f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('build rpath', 'c', 'cpp')

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

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