aboutsummaryrefslogtreecommitdiff
path: root/test cases/osx/2 library versions/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/osx/2 library versions/meson.build')
-rw-r--r--test cases/osx/2 library versions/meson.build31
1 files changed, 27 insertions, 4 deletions
diff --git a/test cases/osx/2 library versions/meson.build b/test cases/osx/2 library versions/meson.build
index 504aa4e..107b467 100644
--- a/test cases/osx/2 library versions/meson.build
+++ b/test cases/osx/2 library versions/meson.build
@@ -1,18 +1,41 @@
project('library versions', 'c')
-shared_library('some', 'lib.c',
+some = shared_library('some', 'lib.c',
version : '1.2.3',
soversion : '0',
install : true)
-shared_library('noversion', 'lib.c',
+noversion = shared_library('noversion', 'lib.c',
install : true)
-shared_library('onlyversion', 'lib.c',
+onlyversion = shared_library('onlyversion', 'lib.c',
version : '1.4.5',
install : true)
-shared_library('onlysoversion', 'lib.c',
+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@'])
+
+# Manually test if the linker can find the above libraries
+# i.e., whether they were generated with the right naming scheme
+executable('manuallink1', out,
+ link_args : ['-L.', '-lsome'])
+
+executable('manuallink2', out,
+ link_args : ['-L.', '-lnoversion'])
+
+executable('manuallink3', out,
+ link_args : ['-L.', '-lonlyversion'])
+
+executable('manuallink4', out,
+ link_args : ['-L.', '-lonlysoversion'])