aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
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>
```