1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|x64"> 5 <Configuration>Debug</Configuration> 6 <Platform>x64</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Release|x64"> 9 <Configuration>Release</Configuration> 10 <Platform>x64</Platform> 11 </ProjectConfiguration> 12 </ItemGroup> 13 <PropertyGroup Label="Globals"> 14 <VCProjectVersion>16.0</VCProjectVersion> 15 <ProjectGuid>{245F601B-02E4-43DF-B64C-B49088673764}</ProjectGuid> 16 <Keyword>Win32Proj</Keyword> 17 <RootNamespace>ediddecode</RootNamespace> 18 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 19 </PropertyGroup> 20 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 21 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 22 <ConfigurationType>Application</ConfigurationType> 23 <UseDebugLibraries>true</UseDebugLibraries> 24 <PlatformToolset>v142</PlatformToolset> 25 <CharacterSet>Unicode</CharacterSet> 26 </PropertyGroup> 27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 28 <ConfigurationType>Application</ConfigurationType> 29 <UseDebugLibraries>false</UseDebugLibraries> 30 <PlatformToolset>v142</PlatformToolset> 31 <WholeProgramOptimization>true</WholeProgramOptimization> 32 <CharacterSet>Unicode</CharacterSet> 33 </PropertyGroup> 34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 35 <ImportGroup Label="ExtensionSettings"> 36 </ImportGroup> 37 <ImportGroup Label="Shared"> 38 </ImportGroup> 39 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 40 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 41 </ImportGroup> 42 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 43 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 44 </ImportGroup> 45 <PropertyGroup Label="UserMacros" /> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 47 <LinkIncremental>true</LinkIncremental> 48 </PropertyGroup> 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 50 <LinkIncremental>false</LinkIncremental> 51 </PropertyGroup> 52 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 53 <ClCompile> 54 <PrecompiledHeader> 55 </PrecompiledHeader> 56 <WarningLevel>Level3</WarningLevel> 57 <SDLCheck>true</SDLCheck> 58 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 59 <ConformanceMode>true</ConformanceMode> 60 <AdditionalIncludeDirectories>$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 61 <DisableSpecificWarnings>4244; 4018; 4267; 4996; 26451; 6385; 6001</DisableSpecificWarnings> 62 </ClCompile> 63 <Link> 64 <SubSystem>Console</SubSystem> 65 <GenerateDebugInformation>true</GenerateDebugInformation> 66 </Link> 67 <PostBuildEvent> 68 <Command> 69 </Command> 70 </PostBuildEvent> 71 <PostBuildEvent> 72 <Message> 73 </Message> 74 </PostBuildEvent> 75 </ItemDefinitionGroup> 76 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 77 <ClCompile> 78 <PrecompiledHeader> 79 </PrecompiledHeader> 80 <WarningLevel>Level3</WarningLevel> 81 <FunctionLevelLinking>true</FunctionLevelLinking> 82 <IntrinsicFunctions>true</IntrinsicFunctions> 83 <SDLCheck>true</SDLCheck> 84 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 85 <ConformanceMode>true</ConformanceMode> 86 <AdditionalIncludeDirectories>$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 87 <DisableSpecificWarnings>4244; 4018; 4267; 4996; 26451; 6385; 6001</DisableSpecificWarnings> 88 </ClCompile> 89 <Link> 90 <SubSystem>Console</SubSystem> 91 <EnableCOMDATFolding>true</EnableCOMDATFolding> 92 <OptimizeReferences>true</OptimizeReferences> 93 <GenerateDebugInformation>true</GenerateDebugInformation> 94 </Link> 95 </ItemDefinitionGroup> 96 <ItemGroup> 97 <ClCompile Include="getopt.c" /> 98 <ClCompile Include="..\edid-decode.cpp" /> 99 <ClCompile Include="..\parse-base-block.cpp" /> 100 <ClCompile Include="..\parse-cta-block.cpp" /> 101 <ClCompile Include="..\parse-di-ext-block.cpp" /> 102 <ClCompile Include="..\parse-displayid-block.cpp" /> 103 <ClCompile Include="..\parse-ls-ext-block.cpp" /> 104 <ClCompile Include="..\parse-vtb-ext-block.cpp" /> 105 </ItemGroup> 106 <ItemGroup> 107 <ClInclude Include="getopt.h" /> 108 <ClInclude Include="unistd.h" /> 109 <ClInclude Include="..\edid-decode.h" /> 110 </ItemGroup> 111 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 112 <ImportGroup Label="ExtensionTargets"> 113 </ImportGroup> 114</Project>