ladybird/Tests/LibAudio/CMakeLists.txt
Lee Hanken 7e3249ad4c LibAudio: Test reading and writing of wav files
Includes a set of wav files of different frequencies, these are
each loaded and then written to a temporary file, checking that
the meta-data is correctly read and that the output matches the input.
2024-01-08 07:20:11 -07:00

14 lines
337 B
CMake

set(TEST_SOURCES
TestWav.cpp
TestFLACSpec.cpp
TestPlaybackStream.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibAudio LIBS LibAudio LibFileSystem)
endforeach()
install(DIRECTORY ${FLAC_SPEC_TEST_PATH} DESTINATION usr/Tests/LibAudio/FLAC)
install(DIRECTORY WAV DESTINATION usr/Tests/LibAudio)