mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:51:47 +08:00
6 lines
217 B
Plaintext
6 lines
217 B
Plaintext
The package dav1d can be imported via CMake FindPkgConfig module:
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(dav1d REQUIRED IMPORTED_TARGET dav1d)
|
|
target_link_libraries(main PkgConfig::dav1d)
|
|
|