meson.build 165 B

12345678910
  1. project('build rpath', 'c')
  2. subdir('sub')
  3. executable('prog', 'prog.c',
  4. link_with : l,
  5. build_rpath : '/foo/bar',
  6. install_rpath : '/baz',
  7. install : true,
  8. )