meson/test cases/unit/10 build_rpath/meson.build

17 lines
298 B
Meson

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