summaryrefslogtreecommitdiff
path: root/stun
diff options
context:
space:
mode:
authorJakub Adam <jakub.adam@collabora.com>2019-01-02 12:55:02 +0100
committerJakub Adam <jakub.adam@collabora.com>2019-01-02 13:06:10 +0100
commit35aa0b9b81d2dfd8c53d88081f58f7d8435afdf8 (patch)
tree9e28cb12f4bbe4aee8bef6b832bbdc64f0819d6b /stun
parent91f99b2240768e2a63ea3c8d8335f0b9b267c012 (diff)
downloadlibnice-35aa0b9b81d2dfd8c53d88081f58f7d8435afdf8.tar.gz
meson: Fix DLL search path during test execution on Windows
Meson needs to see all libraries a target depends on so that it can add each to PATH when running "meson test". Avoids "*.dll was not found" errors.
Diffstat (limited to 'stun')
-rw-r--r--stun/tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/stun/tests/meson.build b/stun/tests/meson.build
index 591cb4e..6018073 100644
--- a/stun/tests/meson.build
+++ b/stun/tests/meson.build
@@ -2,7 +2,7 @@ foreach t : ['parse', 'format', 'bind', 'conncheck', 'hmac']
test_name = 'test-@0@'.format(t)
exe = executable(test_name, test_name + '.c',
include_directories: nice_incs,
- dependencies: syslibs,
+ dependencies: [syslibs, crypto_dep],
link_with: libstun)
test(test_name, exe)
endforeach