mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
16 lines
608 B
CMake
16 lines
608 B
CMake
set(TEST_SOURCES
|
|
TestH264Decode.cpp
|
|
TestParseMatroska.cpp
|
|
TestVP9Decode.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibMedia LIBS LibMedia)
|
|
endforeach()
|
|
|
|
install(FILES avc_in_matroska.mkv DESTINATION usr/Tests/LibMedia)
|
|
install(FILES vp9_in_webm.webm DESTINATION usr/Tests/LibMedia)
|
|
install(FILES vp9_4k.webm DESTINATION usr/Tests/LibMedia)
|
|
install(FILES vp9_clamp_reference_mvs.webm DESTINATION usr/Tests/LibMedia)
|
|
install(FILES vp9_oob_blocks.webm DESTINATION usr/Tests/LibMedia)
|
|
install(FILES master_elements_containing_crc32.mkv DESTINATION usr/Tests/LibMedia)
|