1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:17:34 +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

@ -549,6 +549,11 @@ if (BUILD_LAGOM)
add_serenity_subdirectory(Meta/Lagom/Contrib/MacPDF)
endif()
find_package(SDL2)
if(SDL2_FOUND)
add_serenity_subdirectory(Meta/Lagom/Contrib/VideoPlayerSDL)
endif()
add_executable(icc ../../Userland/Utilities/icc.cpp)
target_link_libraries(icc LibCore LibGfx LibMain)