mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 20:29:42 +00:00
Now it should be clearer looking at the build scripts what options are available for building LibMedia, and what packages are required.
7 lines
239 B
CMake
7 lines
239 B
CMake
include_guard()
|
|
|
|
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)
|