mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +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.
25 lines
422 B
Plaintext
25 lines
422 B
Plaintext
import("//Meta/gn/build/libs/third_party.gni")
|
|
|
|
third_party_dependency("curl") {
|
|
libs = [
|
|
"curl",
|
|
"z",
|
|
"brotlidec",
|
|
"brotlicommon",
|
|
"nghttp2",
|
|
]
|
|
if (current_os == "mac") {
|
|
frameworks = [
|
|
"SystemConfiguration.framework",
|
|
"Security.framework",
|
|
"CoreFoundation.framework",
|
|
"CoreServices.framework",
|
|
]
|
|
} else {
|
|
libs += [
|
|
"ssl",
|
|
"crypto",
|
|
]
|
|
}
|
|
}
|