summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-01-18 17:54:10 +0100
committerBastien Nocera <hadess@hadess.net>2022-01-19 12:21:13 +0100
commitcbc08c4f293664e681b1646e794e7cf62782c6cc (patch)
treef51339cc4229e93f2e4bd3f01b54f1ca4c960601 /tests
parent1604c5739a59cf0fcf24e6814a4db68356db9b62 (diff)
downloadgnome-bluetooth-cbc08c4f293664e681b1646e794e7cf62782c6cc.tar.gz
lib: Split UI and non-UI libraries
Both UI and non-UI libraries export a pkg-config file. Only the non-UI library exports a Gir as it's the only one that gets to be used from a non-native program (gnome-shell).
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 1d1b2e0e..7582027a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -18,7 +18,7 @@ endif
test_bluetooth_device = executable('test-bluetooth-device',
'test-bluetooth-device.c',
include_directories: lib_inc,
- dependencies: deps + private_deps,
+ dependencies: deps,
c_args: cflags,
link_with: libgnome_bluetooth,
)
@@ -30,7 +30,7 @@ test('test-bluetooth-device-test',
test_bluetooth_utils = executable('test-bluetooth-utils',
[ 'test-bluetooth-utils.c', enum_sources ],
include_directories: [ top_inc, lib_inc],
- dependencies: deps + private_deps,
+ dependencies: deps,
c_args: cflags,
link_with: libgnome_bluetooth,
)