|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 3 | + <ItemGroup Label="ProjectConfigurations"> |
| 4 | + <ProjectConfiguration Include="Debug|ARM64"> |
| 5 | + <Configuration>Debug</Configuration> |
| 6 | + <Platform>ARM64</Platform> |
| 7 | + </ProjectConfiguration> |
| 8 | + <ProjectConfiguration Include="Debug|x64"> |
| 9 | + <Configuration>Debug</Configuration> |
| 10 | + <Platform>x64</Platform> |
| 11 | + </ProjectConfiguration> |
| 12 | + <ProjectConfiguration Include="Release|ARM64"> |
| 13 | + <Configuration>Release</Configuration> |
| 14 | + <Platform>ARM64</Platform> |
| 15 | + </ProjectConfiguration> |
| 16 | + <ProjectConfiguration Include="Release|x64"> |
| 17 | + <Configuration>Release</Configuration> |
| 18 | + <Platform>x64</Platform> |
| 19 | + </ProjectConfiguration> |
| 20 | + </ItemGroup> |
| 21 | + |
| 22 | + <PropertyGroup Label="Globals"> |
| 23 | + <VCProjectVersion>16.0</VCProjectVersion> |
| 24 | + <ProjectGuid>{2F8A1C3E-7B4D-4E9F-A6C2-1D5E8B3F0A7C}</ProjectGuid> |
| 25 | + <Keyword>Win32Proj</Keyword> |
| 26 | + <RootNamespace>IndexComparisonTool</RootNamespace> |
| 27 | + <WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion> |
| 28 | + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> |
| 29 | + <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 33 | + |
| 34 | + <PropertyGroup Label="Configuration"> |
| 35 | + <ConfigurationType>Application</ConfigurationType> |
| 36 | + <CharacterSet>Unicode</CharacterSet> |
| 37 | + <PlatformToolset>v143</PlatformToolset> |
| 38 | + </PropertyGroup> |
| 39 | + <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> |
| 40 | + <UseDebugLibraries>true</UseDebugLibraries> |
| 41 | + <LinkIncremental>true</LinkIncremental> |
| 42 | + </PropertyGroup> |
| 43 | + <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> |
| 44 | + <UseDebugLibraries>false</UseDebugLibraries> |
| 45 | + <WholeProgramOptimization>true</WholeProgramOptimization> |
| 46 | + <LinkIncremental>false</LinkIncremental> |
| 47 | + </PropertyGroup> |
| 48 | + |
| 49 | + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| 50 | + |
| 51 | + <ImportGroup Label="PropertySheets"> |
| 52 | + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" |
| 53 | + Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" |
| 54 | + Label="LocalAppDataPlatform" /> |
| 55 | + </ImportGroup> |
| 56 | + |
| 57 | + <PropertyGroup Label="UserMacros" /> |
| 58 | + |
| 59 | + <PropertyGroup> |
| 60 | + <OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir> |
| 61 | + <IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir> |
| 62 | + </PropertyGroup> |
| 63 | + |
| 64 | + <ItemDefinitionGroup> |
| 65 | + <ClCompile> |
| 66 | + <PrecompiledHeader>Use</PrecompiledHeader> |
| 67 | + <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
| 68 | + <PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile> |
| 69 | + <WarningLevel>Level4</WarningLevel> |
| 70 | + <TreatWarningAsError>true</TreatWarningAsError> |
| 71 | + <SDLCheck>true</SDLCheck> |
| 72 | + <AdditionalOptions>/permissive- /std:c++17 %(AdditionalOptions)</AdditionalOptions> |
| 73 | + <!-- WinGetUtil.h is local to this project; no extra include dir needed --> |
| 74 | + <PreprocessorDefinitions>UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 75 | + </ClCompile> |
| 76 | + <Link> |
| 77 | + <SubSystem>Console</SubSystem> |
| 78 | + <!-- Cabinet.lib and winsqlite3.lib are pulled in via #pragma comment(lib) in main.cpp --> |
| 79 | + <!-- WinGetUtil.dll is loaded at runtime via LoadLibrary; no import lib needed --> |
| 80 | + <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> |
| 81 | + </Link> |
| 82 | + </ItemDefinitionGroup> |
| 83 | + |
| 84 | + <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> |
| 85 | + <ClCompile> |
| 86 | + <Optimization>Disabled</Optimization> |
| 87 | + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 88 | + </ClCompile> |
| 89 | + </ItemDefinitionGroup> |
| 90 | + |
| 91 | + <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> |
| 92 | + <ClCompile> |
| 93 | + <Optimization>MaxSpeed</Optimization> |
| 94 | + <FunctionLevelLinking>true</FunctionLevelLinking> |
| 95 | + <IntrinsicFunctions>true</IntrinsicFunctions> |
| 96 | + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 97 | + </ClCompile> |
| 98 | + <Link> |
| 99 | + <EnableCOMDATFolding>true</EnableCOMDATFolding> |
| 100 | + <OptimizeReferences>true</OptimizeReferences> |
| 101 | + </Link> |
| 102 | + </ItemDefinitionGroup> |
| 103 | + |
| 104 | + <ItemGroup> |
| 105 | + <ClInclude Include="pch.h" /> |
| 106 | + <ClInclude Include="WinGetUtil.h" /> |
| 107 | + </ItemGroup> |
| 108 | + <ItemGroup> |
| 109 | + <ClCompile Include="main.cpp" /> |
| 110 | + <ClCompile Include="pch.cpp"> |
| 111 | + <PrecompiledHeader>Create</PrecompiledHeader> |
| 112 | + </ClCompile> |
| 113 | + </ItemGroup> |
| 114 | + |
| 115 | + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| 116 | +</Project> |
0 commit comments