0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-19 19:52:15 +02:00
openvpn3/vcpkg.json
Frank Lichtenheld 866e0c9596 mingw: add new script build-vcpkg
This avoids all the manual deps building and instead
uses vcpkg directly.

Note: need to remove gtest from VCPKG manifest for now:
- it only builds with -posix variant of mingw compiler
- vcpkg uses the non-posix variant and can't be trivially
  reconfigured
- we build gtest from unittests anyway and that one uses
  the compiler we specify

Using the posix variant of mingw compiler will require
setting up a custom triplet and toolchain. That will be
done in a later commit.

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
2023-02-28 13:45:16 +01:00

14 lines
298 B
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "openvpn3",
"version-string": "3.8",
"dependencies": [
"asio",
"jsoncpp",
"lz4",
"openssl",
"tap-windows6",
"xxhash"
]
}