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|Win32"> 5 <Configuration>Debug</Configuration> 6 <Platform>Win32</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Release|Win32"> 9 <Configuration>Release</Configuration> 10 <Platform>Win32</Platform> 11 </ProjectConfiguration> 12 <ProjectConfiguration Include="Debug|x64"> 13 <Configuration>Debug</Configuration> 14 <Platform>x64</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <VCProjectVersion>17.0</VCProjectVersion> 23 <Keyword>Win32Proj</Keyword> 24 <ProjectGuid>{cbb00980-3b4f-4006-973e-61b462d057b3}</ProjectGuid> 25 <RootNamespace>compilerapitest</RootNamespace> 26 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 27 </PropertyGroup> 28 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 29 <PropertyGroup> 30 <ConfigurationType>Application</ConfigurationType> 31 <CharacterSet>Unicode</CharacterSet> 32 <PlatformToolset>v142</PlatformToolset> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> 35 <UseDebugLibraries>true</UseDebugLibraries> 36 </PropertyGroup> 37 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> 38 <UseDebugLibraries>false</UseDebugLibraries> 39 <WholeProgramOptimization>true</WholeProgramOptimization> 40 </PropertyGroup> 41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 42 <ImportGroup Label="PropertySheets"> 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 <ItemDefinitionGroup> 47 <ClCompile> 48 <WarningLevel>Level3</WarningLevel> 49 <SDLCheck>true</SDLCheck> 50 <ConformanceMode>true</ConformanceMode> 51 <AdditionalIncludeDirectories>$(ProjectDir)..\include;$(ProjectDir)..\..\..\..\sdk\include\reactos;$(ProjectDir)..\..\..\..\sdk\lib\pseh\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 52 <PreprocessorDefinitions>_CONSOLE;__VS_PROJECT__;%(PreprocessorDefinitions)</PreprocessorDefinitions> 53 <DisableSpecificWarnings>4532;4996</DisableSpecificWarnings> 54 </ClCompile> 55 <Link> 56 <SubSystem>Console</SubSystem> 57 <GenerateDebugInformation>true</GenerateDebugInformation> 58 </Link> 59 </ItemDefinitionGroup> 60 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> 61 <ClCompile> 62 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 63 </ClCompile> 64 </ItemDefinitionGroup> 65 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> 66 <ClCompile> 67 <FunctionLevelLinking>true</FunctionLevelLinking> 68 <IntrinsicFunctions>true</IntrinsicFunctions> 69 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 70 </ClCompile> 71 <Link> 72 <EnableCOMDATFolding>true</EnableCOMDATFolding> 73 <OptimizeReferences>true</OptimizeReferences> 74 </Link> 75 </ItemDefinitionGroup> 76 <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'"> 77 <ClCompile> 78 <PreprocessorDefinitions>_X86_;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> 79 </ClCompile> 80 </ItemDefinitionGroup> 81 <ItemDefinitionGroup Condition="'$(Platform)'=='x64'"> 82 <ClCompile> 83 <PreprocessorDefinitions>_AMD64_;%(PreprocessorDefinitions)</PreprocessorDefinitions> 84 </ClCompile> 85 </ItemDefinitionGroup> 86 <ItemGroup> 87 <ClCompile Include="floatconv.c" /> 88 <ClCompile Include="testlist.c" /> 89 </ItemGroup> 90 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 91 <ImportGroup Label="ExtensionTargets"> 92 </ImportGroup> 93</Project>