blob: c0bc3bd2703f8063df579c11520cf66d6396236f [file] [log] [blame]
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,
)