1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 19:15:06 +00:00
serenity/Userland/Applications/VideoPlayer/CMakeLists.txt
2022-01-01 04:28:34 +00:00

12 lines
209 B
CMake

serenity_component(
VideoPlayer
TARGETS VideoPlayer
DEPENDS AudioServer
)
set(SOURCES
main.cpp
)
serenity_bin(VideoPlayer)
target_link_libraries(VideoPlayer LibVideo LibAudio LibGUI LibMain)