mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00
14 lines
305 B
CMake
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)
|