1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:07:44 +00:00

Meta: Add a minimal SDL2 based videoplayer for Lagom

This commit is contained in:
Stephan Vedder 2023-11-20 15:05:58 +01:00 committed by Andrew Kaster
parent 7510fa1598
commit 8c65cc185a
3 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,7 @@
add_compile_options(-DAK_DONT_REPLACE_STD)
add_executable(VideoPlayerSDL
main.cpp
)
target_link_libraries(VideoPlayerSDL PRIVATE LibMain LibCore LibGfx LibVideo SDL2::SDL2)