serenity/Userland/Libraries/LibVideo/CMakeLists.txt
FalseHonesty 403bb07443 LibVideo: Scaffold LibVideo and implement simplistic Matroska parser
This commit initializes the LibVideo library and implements parsing
basic Matroska container files. Currently, it will only parse audio
and video tracks.
2021-06-06 17:47:00 +02:00

7 lines
146 B
CMake

set(SOURCES
MatroskaDocument.h
MatroskaReader.cpp
)
serenity_lib(LibVideo video)
target_link_libraries(LibVideo LibAudio LibCore LibIPC)