The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
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, |
|
)
|
|
|