1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00
serenity/Userland/Applications/VideoPlayer/CMakeLists.txt
Slimey e00b16460c Base+VideoPlayer: Add an icon for video player
Co-authored-by: TreuKS <ks2225@protonmail.com>
2022-11-06 22:27:22 -08:00

14 lines
305 B
CMake

serenity_component(
VideoPlayer
TARGETS VideoPlayer
DEPENDS AudioServer
)
set(SOURCES
main.cpp
VideoFrameWidget.cpp
VideoPlayerWidget.cpp
)
serenity_app(VideoPlayer ICON app-video-player)
target_link_libraries(VideoPlayer PRIVATE LibVideo LibAudio LibCore LibGfx LibGUI LibMain)