blob: 86844c266d9c2bb3d53f8b61faf538a9e53fe57d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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)
|