mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
The vcpkg install is handled through an action to run vcpkg install with the private --x-install-root flag that their CMake toolchain file uses to install dependencies into a build-time directory.
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
import("//Meta/gn/build/libs/third_party.gni")
|
|
|
|
third_party_dependency("webp") {
|
|
third_party_includes = [ "webp" ]
|
|
libs = [
|
|
"webp",
|
|
"sharpyuv",
|
|
"webpdecoder",
|
|
"webpdemux",
|
|
"webpmux",
|
|
]
|
|
}
|