Meta: Add third-party libraries to gn build with vcpkg install script

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.
This commit is contained in:
Andrew Kaster 2024-09-25 12:27:23 -06:00 committed by Andrew Kaster
commit 6ee1afc9c0
Notes: github-actions[bot] 2024-09-27 16:17:09 +00:00
23 changed files with 457 additions and 8 deletions

View file

@ -0,0 +1,5 @@
import("//Meta/gn/build/libs/third_party.gni")
third_party_dependency("sqlite3") {
libs = [ "sqlite3" ]
}