<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{45566F6B-11DE-4B5F-8A39-7912181C3016}</ProjectGuid> <RootNamespace>SoftwareRasteriser</RootNamespace> <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v142</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v142</PlatformToolset> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>true</LinkIncremental> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <AdditionalDependencies>Msimg32.lib;%(AdditionalDependencies)</AdditionalDependencies> <Profile>false</Profile> <LinkErrorReporting>NoErrorReport</LinkErrorReporting> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Full</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> <AdditionalDependencies>Msimg32.lib;%(AdditionalDependencies)</AdditionalDependencies> <Profile>true</Profile> </Link> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="Colour.cpp" /> <ClCompile Include="Keyboard.cpp" /> <ClCompile Include="main.cpp" /> <ClCompile Include="Matrix4.cpp" /> <ClCompile Include="Mesh.cpp" /> <ClCompile Include="Mouse.cpp" /> <ClCompile Include="Window.cpp" /> <ClCompile Include="RenderObject.cpp" /> <ClCompile Include="SoftwareRasteriser.cpp" /> <ClCompile Include="Texture.cpp" /> <ClCompile Include="Vector3.cpp" /> <ClCompile Include="Vector4.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="Common.h" /> <ClInclude Include="InputDevice.h" /> <ClInclude Include="Keyboard.h" /> <ClInclude Include="Matrix4.h" /> <ClInclude Include="Mesh.h" /> <ClInclude Include="Mouse.h" /> <ClInclude Include="Colour.h" /> <ClInclude Include="Window.h" /> <ClInclude Include="RenderObject.h" /> <ClInclude Include="SoftwareRasteriser.h" /> <ClInclude Include="Texture.h" /> <ClInclude Include="Vector2.h" /> <ClInclude Include="Vector3.h" /> <ClInclude Include="Vector4.h" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> </Project>