aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-01-21 12:12:15 -0500
committerDavid Robillard <d@drobilla.net>2025-01-21 12:12:15 -0500
commitaf8db1f1ac957b53667150af903985b1cdb801af (patch)
treebd7e7f4b58fb8449474a37cfb62ca36631134649
parent51aae63069fb93a9994cae72f8c28cee06f92362 (diff)
downloadpugl-af8db1f1ac957b53667150af903985b1cdb801af.tar.gz
pugl-af8db1f1ac957b53667150af903985b1cdb801af.tar.bz2
pugl-af8db1f1ac957b53667150af903985b1cdb801af.zip
Fix Windows test build with Vulkan
-rw-r--r--bindings/cpp/test/headers/meson.build2
-rw-r--r--test/headers/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/bindings/cpp/test/headers/meson.build b/bindings/cpp/test/headers/meson.build
index 67dad3c..cbd36bf 100644
--- a/bindings/cpp/test/headers/meson.build
+++ b/bindings/cpp/test/headers/meson.build
@@ -27,7 +27,7 @@ test(
'test_headers_cpp',
files('test_headers.cpp'),
cpp_args: test_headers_cpp_args,
- dependencies: puglpp_dep,
+ dependencies: [puglpp_dep, vulkan_dep],
),
suite: 'unit',
)
diff --git a/test/headers/meson.build b/test/headers/meson.build
index 72d039a..38a6ad2 100644
--- a/test/headers/meson.build
+++ b/test/headers/meson.build
@@ -27,7 +27,7 @@ test(
'test_headers_c',
files('test_headers.c'),
c_args: test_headers_c_args,
- dependencies: pugl_dep,
+ dependencies: [pugl_dep, vulkan_dep],
),
suite: 'unit',
)