From 0fe3ed6029c8d92ba8301fcde0ec189280d13a79 Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 28 Sep 2025 16:11:56 -0400 Subject: [PATCH] Update YAZE project configuration to enable vcpkg integration for static libraries - Added a PropertyGroup in the `YAZE.vcxproj` file to enable vcpkg manifest mode and specify static triplets for Win32, x64, and ARM64 platforms. - This change enhances the project's dependency management and aligns with the current strategy for using static libraries. --- YAZE.vcxproj | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/YAZE.vcxproj b/YAZE.vcxproj index 76664ba6..320016d2 100644 --- a/YAZE.vcxproj +++ b/YAZE.vcxproj @@ -1,5 +1,11 @@ + + true + x86-windows-static + x64-windows-static + arm64-windows-static + Debug