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.
55 lines
1.8 KiB
55 lines
1.8 KiB
project('library versions', 'c') |
|
|
|
if host_machine.system() == 'cygwin' |
|
error('MESON_SKIP_TEST linuxlike soversions not supported on Cygwin.') |
|
endif |
|
|
|
some = shared_library('some', 'lib.c', |
|
version : '1.2.3', |
|
soversion : '0', |
|
install : true) |
|
|
|
noversion = shared_library('noversion', 'lib.c', |
|
install : true) |
|
|
|
onlyversion = shared_library('onlyversion', 'lib.c', |
|
version : '1.4.5', |
|
install : true) |
|
|
|
onlysoversion = shared_library('onlysoversion', 'lib.c', |
|
# Also test that int soversion is acceptable |
|
soversion : 5, |
|
install : true) |
|
|
|
# Hack to make the executables below depend on the shared libraries above |
|
# without actually adding them as `link_with` dependencies since we want to try |
|
# linking to them with -lfoo linker arguments. |
|
out = custom_target('library-dependency-hack', |
|
input : 'exe.orig.c', |
|
output : 'exe.c', |
|
depends : [some, noversion, onlyversion, onlysoversion], |
|
command : ['cp', '@INPUT@', '@OUTPUT@']) |
|
|
|
# Need to add this manually because Meson can't add it automatically because |
|
# it doesn't know that we are linking to libraries in the build directory. |
|
rpath_dir = meson.current_build_dir() |
|
|
|
# Manually test if the linker can find the above libraries |
|
# i.e., whether they were generated with the right naming scheme |
|
test('manually linked 1', executable('manuallink1', out, |
|
link_args : ['-L.', '-lsome'], |
|
build_rpath : rpath_dir)) |
|
|
|
test('manually linked 2', executable('manuallink2', out, |
|
link_args : ['-L.', '-lnoversion'], |
|
build_rpath : rpath_dir)) |
|
|
|
test('manually linked 3', executable('manuallink3', out, |
|
link_args : ['-L.', '-lonlyversion'], |
|
build_rpath : rpath_dir)) |
|
|
|
test('manually linked 4', executable('manuallink4', out, |
|
link_args : ['-L.', '-lonlysoversion'], |
|
build_rpath : rpath_dir)) |
|
|
|
shared_module('module', 'lib.c', install : true)
|
|
|