blob: 76ed8de25d59a848524f8efc200e9ea4a2d27b16 [file] [log] [blame]
project('build rpath', 'c', 'cpp')
subdir('sub')
pkgconf_dep = dependency('dummy')
executable('prog', 'prog.c',
dependencies : pkgconf_dep,
link_with : l,
build_rpath : '/foo/bar',
install_rpath : '/baz',
install : true,
)
executable('progcxx', 'prog.cc',
dependencies : pkgconf_dep,
link_with : l,
build_rpath : '/foo/bar',
install_rpath : 'baz',
install : true,
)