From e9e49239ce3fd9d81f9f4df605f103d100462e97 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Fri, 17 Feb 2023 18:50:56 +0100 Subject: [PATCH] mingw: disable VCPKG_APPLOCAL_DEPS in build-vcpkg We do not want to force a dependency on powershell. Copying the right dlls is rather trivial. Signed-off-by: Frank Lichtenheld --- scripts/mingw/build-vcpkg | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/mingw/build-vcpkg b/scripts/mingw/build-vcpkg index 714edb16..254f5168 100755 --- a/scripts/mingw/build-vcpkg +++ b/scripts/mingw/build-vcpkg @@ -33,6 +33,7 @@ build_core() cmake -D CMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" \ -D VCPKG_TARGET_TRIPLET="$VCPKG_ARCH-mingw-dynamic" \ + -D VCPKG_APPLOCAL_DEPS=OFF \ -D VCPKG_OVERLAY_PORTS="$CORE_DIR/deps/vcpkg-ports" \ -D CMAKE_C_COMPILER="$ARCH-$CMAKE_C_COMPILER" \ -D CMAKE_CXX_COMPILER="$ARCH-$CMAKE_CXX_COMPILER" \