ladybird/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

15 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)