summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-09-09 14:30:13 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-09-10 08:39:37 +0000
commitdb2d2c0cebd40c8979cdec46ac70249047f6ba6a (patch)
tree0f4aac01e1e4c1252dd0c946e7bba8512c2d9e9f
parentab805e09148ce41f5004d2552b263e41ae34735f (diff)
downloadModemManager-db2d2c0cebd40c8979cdec46ac70249047f6ba6a.tar.gz
build,meson: Fix libmm-test-common name and dependencies
`libmm-test-common` is created using underscores. It also uses `gio-unix-2.0` as a public dependency but actually it should be private. Both issues have been fixed.
-rw-r--r--plugins/meson.build5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/meson.build b/plugins/meson.build
index adc0adb58..99f875aa2 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -12,16 +12,15 @@ sources = files(
)
deps = [
- gio_unix_dep,
libhelpers_dep,
libmm_test_generated_dep,
]
libmm_test_common = shared_library(
- 'mm_test_common',
+ 'mm-test-common',
sources: sources,
include_directories: top_inc,
- dependencies: deps,
+ dependencies: deps + [gio_unix_dep],
c_args: '-DTEST_SERVICES="@0@"'.format(source_root / 'data/tests'),
)