mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 15:40:28 +00:00
The licensing issue seems to be resolved (#2214). The stubs are not longer necessary. Even if they were, they do not compile properly.
10 lines
305 B
CMake
10 lines
305 B
CMake
include_guard()
|
|
|
|
if (NOT ANDROID)
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(AVCODEC REQUIRED IMPORTED_TARGET libavcodec)
|
|
pkg_check_modules(AVFORMAT REQUIRED IMPORTED_TARGET libavformat)
|
|
pkg_check_modules(AVUTIL REQUIRED IMPORTED_TARGET libavutil)
|
|
else()
|
|
find_package(FFMPEG REQUIRED)
|
|
endif()
|