From 2fa40bbf5485937e9a1ec19b50b53d151826fd68 Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Mon, 11 Nov 2024 16:43:38 +0100 Subject: [PATCH] Use dynamic vcpkg packages on linux and mac --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17eeec4..2860243 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,14 +148,14 @@ jobs: shell: bash run: | cd ${{ github.workspace }} - ${{ env.VCPKG_EXE }} install --triplet x64-linux + ${{ env.VCPKG_EXE }} install --triplet x64-linux-dynamic - name: Install vcpkg dependencies if: startsWith(matrix.os, 'macos') shell: bash run: | cd ${{ github.workspace }} - ${{ env.VCPKG_EXE }} install --triplet x64-osx --allow-unsupported + ${{ env.VCPKG_EXE }} install --triplet x64-osx-dynamic # Build the package - name: Windows build