From 0ea9ac360775460268d25b4d350640397f1fafc1 Mon Sep 17 00:00:00 2001 From: tooomm Date: Thu, 23 Jul 2026 17:30:48 +0200 Subject: [PATCH] win only --- .ci/compile.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/compile.sh b/.ci/compile.sh index 6e9b6e994..8d4cf1559 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -161,7 +161,9 @@ if [[ -n $PACKAGE_TYPE ]]; then fi if [[ $USE_VCPKG ]]; then flags+=("-DUSE_VCPKG=1") - flags+=("-DVCPKG_APPLOCAL_DEPS=OFF") # disable copying of runtime DLLs into build output on Windows + if [[ $RUNNER_OS == Windows ]]; then + flags+=("-DVCPKG_APPLOCAL_DEPS=OFF") # disable copying of runtime DLLs into build output + fi fi # Add cmake --build flags