mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 16:40:03 +00: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.
8 lines
212 B
Text
8 lines
212 B
Text
import("//Meta/gn/build/libs/third_party.gni")
|
|
import("//Meta/gn/build/libs/vulkan/enable.gni")
|
|
|
|
third_party_dependency("vulkan") {
|
|
libs = [ "vulkan" ]
|
|
defines = [ "USE_VULKAN=1" ]
|
|
enable = enable_vulkan
|
|
}
|