aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-21 17:47:58 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-22 21:09:25 +0200
commitc4b8e0389576202129236ba725551938764844cd (patch)
treee21d83063da22bb79a8d7bf4d403266ea3f8b16f /test cases/frameworks
parent0c4dd81c4db228492a483b9aade3450d0ed408e2 (diff)
downloadmeson-c4b8e0389576202129236ba725551938764844cd.zip
meson-c4b8e0389576202129236ba725551938764844cd.tar.gz
meson-c4b8e0389576202129236ba725551938764844cd.tar.bz2
tests: both_library test improvements
This switches some `shared_library()` calls to `library()` and adds one new CI matrix entries for -Ddefault_library={static, both}.
Diffstat (limited to 'test cases/frameworks')
-rw-r--r--test cases/frameworks/10 gtk-doc/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/frameworks/10 gtk-doc/meson.build b/test cases/frameworks/10 gtk-doc/meson.build
index 292980f..43ee929 100644
--- a/test cases/frameworks/10 gtk-doc/meson.build
+++ b/test cases/frameworks/10 gtk-doc/meson.build
@@ -26,7 +26,7 @@ endif
gobject = dependency('gobject-2.0')
-libfoo = library('foo', 'foo.c',
+libfoo = shared_library('foo', 'foo.c',
include_directories: inc,
dependencies: gobject,
)