Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index b5ee763..1bf915e 100644
--- a/meson.build
+++ b/meson.build
@@ -86,9 +86,11 @@ endif
# On Windows, we use a compatibility layer to emulate pthread
if host_machine.system() == 'windows'
- thread_dependency = declare_dependency(sources : files('src/win32/thread.c'))
+ thread_dependency = []
+ thread_compat_dep = declare_dependency(sources : files('src/win32/thread.c'))
else
thread_dependency = dependency('threads')
+ thread_compat_dep = []
endif