diff options
author | David Robillard <d@drobilla.net> | 2025-01-21 12:12:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-21 12:12:15 -0500 |
commit | af8db1f1ac957b53667150af903985b1cdb801af (patch) | |
tree | bd7e7f4b58fb8449474a37cfb62ca36631134649 | |
parent | 51aae63069fb93a9994cae72f8c28cee06f92362 (diff) | |
download | pugl-af8db1f1ac957b53667150af903985b1cdb801af.tar.gz pugl-af8db1f1ac957b53667150af903985b1cdb801af.tar.bz2 pugl-af8db1f1ac957b53667150af903985b1cdb801af.zip |
Fix Windows test build with Vulkan
-rw-r--r-- | bindings/cpp/test/headers/meson.build | 2 | ||||
-rw-r--r-- | test/headers/meson.build | 2 |
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', ) |