aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorYang Yang <yangyanghub@hotmail.com>2017-07-04 00:55:46 +0800
committerYang Yang <yangyanghub@hotmail.com>2017-07-04 00:55:46 +0800
commitc89b4358156854bd4ef8a4f8a714553b7b14b59e (patch)
treea73a2ba23796c2d2c837ea9ef93cd3e5fcdfc8dc /docs
parent144d3718c4197b101c7d61ee6a258200371fb1ab (diff)
downloadvcpkg-c89b4358156854bd4ef8a4f8a714553b7b14b59e.tar.gz
vcpkg-c89b4358156854bd4ef8a4f8a714553b7b14b59e.zip
fix the static-linking setting in docs/users/integration.md
Diffstat (limited to 'docs')
-rw-r--r--docs/users/integration.md4
1 files 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>
```