blob: f53c0f8bd685aef6cc6a4b7cc3f2f4d456be9788 [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('multibyte_rpath', 'prog.c',
link_with: l,
install_rpath: get_option('prefix') / '⢖⢖⢖⢖⢖',
install: true
)
executable('progcxx', 'prog.cc',
link_with : l,
build_rpath : '/foo/bar',
install_rpath : 'baz',
install : true,
)