mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
21 lines
439 B
CMake
21 lines
439 B
CMake
serenity_component(
|
|
VideoPlayer
|
|
TARGETS VideoPlayer
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
compile_gml(VideoPlayerWindow.gml VideoPlayerWindowGML.h videoplayer_window_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
VideoFrameWidget.cpp
|
|
VideoPlayerWidget.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
VideoPlayerWindowGML.h
|
|
)
|
|
|
|
serenity_app(VideoPlayer ICON app-video-player)
|
|
target_link_libraries(VideoPlayer PRIVATE LibVideo LibAudio LibCore LibGfx LibGUI LibMain)
|