File: meson.build

package info (click to toggle)
openh264 2.6.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,120 kB
  • sloc: cpp: 74,004; asm: 34,842; ansic: 23,866; sh: 2,540; python: 937; objc: 612; cs: 471; makefile: 354; java: 319; xml: 204; javascript: 17
file content (18 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test_sources = [
  'DecUT_Deblock.cpp',
  'DecUT_DeblockCommon.cpp',
  'DecUT_DecExt.cpp',
  'DecUT_ErrorConcealment.cpp',
  'DecUT_IdctResAddPred.cpp',
  'DecUT_IntraPrediction.cpp',
  'DecUT_ParseSyntax.cpp',
  'DecUT_PredMv.cpp',
]

e = executable('test_decoder', test_sources,
        dependencies : gtest_main_dep,
        include_directories: [inc, test_inc, decoder_inc],
        link_with: [libcommon, libdecoder])

test('decoder', e,
  workdir: join_paths(meson.current_source_dir(), '..', '..'))