From 346e58e4f5442a779aeb16f74b4a55ca23aa9ecc Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 17 Mar 2024 17:05:22 -0600 Subject: [PATCH] build: try installing jsoncpp with vcpkg (2) --- .github/workflows/continuous-building.yml | 1 - vcpkg.json | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 vcpkg.json diff --git a/.github/workflows/continuous-building.yml b/.github/workflows/continuous-building.yml index b9dde7e9..2b7a22ca 100644 --- a/.github/workflows/continuous-building.yml +++ b/.github/workflows/continuous-building.yml @@ -31,7 +31,6 @@ jobs: vcpkgDirectory: '${{ github.workspace }}/vcpkg' vcpkgGitCommitId: cf4ebef2294e164875ce17d7937f44d3e3ea156e runVcpkgInstall: true - runVcpkgFormatString: '[`install`, `jsoncpp`]' - uses: actions/checkout@v4 with: diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 00000000..37632a04 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", + "dependencies": [ + "jsoncpp" + ] +}