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

meson.build « tests « silk - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7c70f75f691fef65aeebeeb8c2a731e25a10c0f (plain)
1
2
3
4
5
6
7
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)