summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-12-06 14:08:39 +0100
committerBastien Nocera <hadess@hadess.net>2021-12-06 14:08:39 +0100
commit754b5d61d8872a13c813b0e65cc7c320f97479be (patch)
tree24d887056448e43eb5a6716419f63b0a73531850 /tests
parent9dbbface2cf9c24d23829b284c037da1b36cadde (diff)
downloadgnome-bluetooth-754b5d61d8872a13c813b0e65cc7c320f97479be.tar.gz
tests: Fix bluetooth-utils test build
gnome-bluetooth-enum-types.h could be missing at this point, make sure it's built before we compile the test program.
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index eccb2539..1d1b2e0e 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -28,7 +28,7 @@ test('test-bluetooth-device-test',
)
test_bluetooth_utils = executable('test-bluetooth-utils',
- 'test-bluetooth-utils.c',
+ [ 'test-bluetooth-utils.c', enum_sources ],
include_directories: [ top_inc, lib_inc],
dependencies: deps + private_deps,
c_args: cflags,