1test_sources = [ 2 'DecUT_Deblock.cpp', 3 'DecUT_DeblockCommon.cpp', 4 'DecUT_DecExt.cpp', 5 'DecUT_ErrorConcealment.cpp', 6 'DecUT_IdctResAddPred.cpp', 7 'DecUT_IntraPrediction.cpp', 8 'DecUT_ParseSyntax.cpp', 9 'DecUT_PredMv.cpp', 10] 11 12e = executable('test_decoder', test_sources, 13 dependencies : gtest_main_dep, 14 include_directories: [inc, test_inc, decoder_inc], 15 link_with: [libcommon, libdecoder]) 16 17test('decoder', e, 18 workdir: join_paths(meson.current_source_dir(), '..', '..')) 19