-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (22 loc) · 1.21 KB
/
Directory.Build.props
File metadata and controls
27 lines (22 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project>
<PropertyGroup Condition="'$(MSBuildProjectExtension)'=='.vcxproj'">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectExtension)'=='.vcxproj' and '$(Platform)'=='Win32'">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
<VcpkgTriplet>x86-windows-static</VcpkgTriplet>
<VcpkgInstalledDir>$(MSBuildThisFileDirectory)VcpkgInstalled\Win32\</VcpkgInstalledDir>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectExtension)'=='.vcxproj' and '$(Platform)'=='x64'">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
<VcpkgTriplet>x64-windows-static</VcpkgTriplet>
<VcpkgInstalledDir>$(MSBuildThisFileDirectory)VcpkgInstalled\Win64\</VcpkgInstalledDir>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectExtension)'=='.vcxproj' and '$(Platform)'=='ARM64'">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
<VcpkgTriplet>arm64-windows-static</VcpkgTriplet>
<VcpkgInstalledDir>$(MSBuildThisFileDirectory)VcpkgInstalled\Arm64\</VcpkgInstalledDir>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)vcpkg\scripts\buildsystems\msbuild\vcpkg.props"
Condition="'$(MSBuildProjectExtension)'=='.vcxproj'" />
</Project>