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:
-rw-r--r--tests/meson.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 23ba4ed..5398ba2 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -67,10 +67,15 @@ if is_asm_enabled
m_lib = cc.find_library('m', required: false)
+ libdav1d_nasm_objs_if_needed = []
+ if meson.version().version_compare('< 0.48.999')
+ libdav1d_nasm_objs_if_needed = libdav1d_nasm_objs
+ endif
+
checkasm = executable('checkasm',
checkasm_sources,
checkasm_nasm_objs,
- libdav1d_nasm_objs,
+ libdav1d_nasm_objs_if_needed,
objects: [
checkasm_bitdepth_objs,