commit 1c0d9b62c50c12222b2c2cb01a063d3607c484e5
parent 3f1ede7378fbfefb7a4574965e32923f7a6ad35d
Author: Flor Chacón <14323496+florelis@users.noreply.github.com>
Date: Sat, 3 May 2025 03:23:59 -0700
Fix arm64-release-static vcpkg triplet (#5431)
In #5423 I used a wrong variable for the arm64-release-static vcpkg
triplet. Didn't notice it until running on internal builds because we
don't build that configuration in CI builds here...
###### Microsoft Reviewers: [Open in
CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/microsoft/winget-cli/pull/5431)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/VcpkgCustomTriplets/arm64-release-static.cmake b/src/VcpkgCustomTriplets/arm64-release-static.cmake
@@ -1,4 +1,4 @@
-include("${CMAKE_CURRENT_SOURCE_DIR}/common.cmake")
+include("${CMAKE_CURRENT_LIST_DIR}/common.cmake")
set(VCPKG_TARGET_ARCHITECTURE arm64)
set(VCPKG_CRT_LINKAGE static)
set(VCPKG_BUILD_TYPE release)