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.
17 lines
298 B
17 lines
298 B
5 years ago
|
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,
|
||
|
)
|