From c89b4358156854bd4ef8a4f8a714553b7b14b59e Mon Sep 17 00:00:00 2001 From: Yang Yang <yangyanghub@hotmail.com> Date: Tue, 4 Jul 2017 00:55:46 +0800 Subject: [PATCH] fix the static-linking setting in docs/users/integration.md --- docs/users/integration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/users/integration.md b/docs/users/integration.md index 1e52adb88..f1b5014bf 100644 --- a/docs/users/integration.md +++ b/docs/users/integration.md @@ -107,8 +107,8 @@ To override the automatically chosen [triplet][], you can specify the MSBuild pr ```xml <PropertyGroup Label="Globals"> <!-- .... --> - <VcpkgTriplet Condition="'$(Configuration)'=='Win32'">x86-windows-static</VcpkgTriplet> - <VcpkgTriplet Condition="'$(Configuration)'=='x64'">x64-windows-static</VcpkgTriplet> + <VcpkgTriplet Condition="'$(Platform)'=='Win32'">x86-windows-static</VcpkgTriplet> + <VcpkgTriplet Condition="'$(Platform)'=='x64'">x64-windows-static</VcpkgTriplet> </PropertyGroup> ```