The Meson Build System http://mesonbuild.com/
 
 
 
 
 
 

16 lines
298 B

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,
)