mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
17 lines
431 B
CMake
17 lines
431 B
CMake
serenity_component(
|
|
VideoPlayer
|
|
TARGETS VideoPlayer
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
compile_gml(VideoPlayerWidget.gml VideoPlayerWidgetGML.cpp)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
VideoPlayerWidgetGML.cpp
|
|
VideoFrameWidget.cpp
|
|
VideoPlayerWidget.cpp
|
|
)
|
|
|
|
serenity_app(VideoPlayer ICON app-video-player)
|
|
target_link_libraries(VideoPlayer PRIVATE LibVideo LibAudio LibConfig LibCore LibGfx LibGUI LibMain LibFileSystemAccessClient)
|