-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathCppConsoleDesktop.vcxproj
More file actions
82 lines (79 loc) · 4 KB
/
Copy pathCppConsoleDesktop.vcxproj
File metadata and controls
82 lines (79 loc) · 4 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="NuGet">
<!-- When building centrally, this will define a single nuget package location for all samples -->
<NugetPackageDirectory Condition="'$(NugetPackageDirectory)'==''">..\..\packages</NugetPackageDirectory>
<!-- Tell NuGet this is PackageReference style -->
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<!-- Tell NuGet we're a native project -->
<NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker>
<!-- Tell NuGet we target Windows (use your existing WindowsTargetPlatformVersion) -->
<NuGetTargetPlatformIdentifier>Windows</NuGetTargetPlatformIdentifier>
<NuGetTargetPlatformVersion>$(WindowsTargetPlatformVersion)</NuGetTargetPlatformVersion>
</PropertyGroup>
<PropertyGroup>
<WinMLEnableDefaultOrtHeaderIncludePath>true</WinMLEnableDefaultOrtHeaderIncludePath>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64" Configuration="Debug" Platform="x64" />
<ProjectConfiguration Include="Release|x64" Configuration="Release" Platform="x64" />
<ProjectConfiguration Include="Debug|ARM64" Configuration="Debug" Platform="ARM64" />
<ProjectConfiguration Include="Release|ARM64" Configuration="Release" Platform="ARM64" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>17.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{1341505b-863b-4df5-9a43-b84a635d1ae9}</ProjectGuid>
<RootNamespace>CppConsoleDesktop</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<WindowsPackageType>None</WindowsPackageType>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" />
<PackageReference Include="Microsoft.Windows.CppWinRT" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v145</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '17.0'">v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ItemDefinitionGroup>
<ClCompile>
<LanguageStandard>stdcpp20</LanguageStandard>
<PreprocessorDefinitions>_CONSOLE%(PreprocessorDefinitions)</PreprocessorDefinitions>
<TreatWarningAsError>true</TreatWarningAsError>
<WarningLevel>Level4</WarningLevel>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\Shared\cpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="CppConsoleDesktop.cpp" />
<ClCompile Include="..\..\Shared\cpp\ArgumentParser.cpp" />
<ClCompile Include="..\..\Shared\cpp\ExecutionProviderManager.cpp" />
<ClCompile Include="..\..\Shared\cpp\ImageProcessor.cpp" />
<ClCompile Include="..\..\Shared\cpp\ModelManager.cpp" />
<ClCompile Include="..\..\Shared\cpp\InferenceEngine.cpp" />
<ClCompile Include="..\..\Shared\cpp\ResultProcessor.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\Shared\cpp\WindowsMLShared.h" />
<ClInclude Include="..\..\Shared\cpp\ArgumentParser.h" />
<ClInclude Include="..\..\Shared\cpp\ExecutionProviderManager.h" />
<ClInclude Include="..\..\Shared\cpp\ImageProcessor.h" />
<ClInclude Include="..\..\Shared\cpp\ModelManager.h" />
<ClInclude Include="..\..\Shared\cpp\InferenceEngine.h" />
<ClInclude Include="..\..\Shared\cpp\ResultProcessor.h" />
</ItemGroup>
<ItemGroup>
<None Include="app.manifest" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<Import Project="..\..\Resources\SqueezeNetModel.targets" />
</Project>