summaryrefslogtreecommitdiff
path: root/silk/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-03-19 15:40:22 +0000
committerNirbheek Chauhan <nirbheek@centricular.com>2020-10-28 22:29:08 +0530
commitc2b542b6c02bafbe7a83b2eeec6cb5a0bfa3ed0d (patch)
treed788ad2c57bd1ccaae6aa73dced21c83c59df1b1 /silk/tests
parent034c1b61a250457649d788bbf983b3f0fb63f02e (diff)
downloadopus-c2b542b6c02bafbe7a83b2eeec6cb5a0bfa3ed0d.tar.gz
Add support for Meson build system
Tested on: - Linux/x86* with gcc - Android armv7 arm64 x86 x86_64 with clang - Windows x86 x86_64 with Visual Studio 2017 - Windows x86 x86_64 with MinGW - macOS x86_64 with clang - iOS arm64 x86_64 with clang Co-authored by: Nirbheek Chauhan <nirbheek@centricular.com> https://gitlab.xiph.org/xiph/opus/-/merge_requests/13
Diffstat (limited to 'silk/tests')
-rw-r--r--silk/tests/meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/silk/tests/meson.build b/silk/tests/meson.build
new file mode 100644
index 00000000..b7c70f75
--- /dev/null
+++ b/silk/tests/meson.build
@@ -0,0 +1,8 @@
+exe = executable('test_unit_LPC_inv_pred_gain',
+ 'test_unit_LPC_inv_pred_gain.c', '../LPC_inv_pred_gain.c',
+ include_directories: opus_includes,
+ link_with: [celt_lib, celt_static_libs, silk_lib, silk_static_libs],
+ dependencies: libm,
+ install: false)
+
+test(test_name, exe)