1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:58:12 +00:00
serenity/Userland/Applications/VideoPlayer/CMakeLists.txt
kleines Filmröllchen 1e67435ff5 Meta: Rename compile_gml to stringify_gml
This is what this function really does, it doesn't compile anything.
2023-08-11 21:33:48 +02:00

20 lines
477 B
CMake

serenity_component(
VideoPlayer
TARGETS VideoPlayer
DEPENDS AudioServer
)
stringify_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 LibConfig LibCore LibGfx LibGUI LibMain LibFileSystemAccessClient)