home *** CD-ROM | disk | FTP | other *** search
/ Introduction to 3D Game …ogramming with DirectX 12 / Introduction-to-3D-Game-Programming-with-DirectX-12.ISO / Code.Textures / Chapter 22 Quaternions / QuatDemo / QuatDemo.vcxproj < prev   
Encoding:
Extensible Markup Language  |  2016-03-02  |  8.2 KB  |  172 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.0" 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="Debug|x64">
  9.       <Configuration>Debug</Configuration>
  10.       <Platform>x64</Platform>
  11.     </ProjectConfiguration>
  12.     <ProjectConfiguration Include="Release|Win32">
  13.       <Configuration>Release</Configuration>
  14.       <Platform>Win32</Platform>
  15.     </ProjectConfiguration>
  16.     <ProjectConfiguration Include="Release|x64">
  17.       <Configuration>Release</Configuration>
  18.       <Platform>x64</Platform>
  19.     </ProjectConfiguration>
  20.   </ItemGroup>
  21.   <ItemGroup>
  22.     <ClCompile Include="..\..\Common\Camera.cpp" />
  23.     <ClCompile Include="..\..\Common\d3dApp.cpp" />
  24.     <ClCompile Include="..\..\Common\d3dUtil.cpp" />
  25.     <ClCompile Include="..\..\Common\DDSTextureLoader.cpp" />
  26.     <ClCompile Include="..\..\Common\GameTimer.cpp" />
  27.     <ClCompile Include="..\..\Common\GeometryGenerator.cpp" />
  28.     <ClCompile Include="..\..\Common\MathHelper.cpp" />
  29.     <ClCompile Include="AnimationHelper.cpp" />
  30.     <ClCompile Include="FrameResource.cpp" />
  31.     <ClCompile Include="QuatApp.cpp" />
  32.   </ItemGroup>
  33.   <ItemGroup>
  34.     <ClInclude Include="..\..\Common\Camera.h" />
  35.     <ClInclude Include="..\..\Common\d3dApp.h" />
  36.     <ClInclude Include="..\..\Common\d3dUtil.h" />
  37.     <ClInclude Include="..\..\Common\d3dx12.h" />
  38.     <ClInclude Include="..\..\Common\DDSTextureLoader.h" />
  39.     <ClInclude Include="..\..\Common\GameTimer.h" />
  40.     <ClInclude Include="..\..\Common\GeometryGenerator.h" />
  41.     <ClInclude Include="..\..\Common\MathHelper.h" />
  42.     <ClInclude Include="..\..\Common\UploadBuffer.h" />
  43.     <ClInclude Include="AnimationHelper.h" />
  44.     <ClInclude Include="FrameResource.h" />
  45.   </ItemGroup>
  46.   <PropertyGroup Label="Globals">
  47.     <ProjectGuid>{FE0CC4EB-8818-4EF7-922B-B591D2906E0C}</ProjectGuid>
  48.     <Keyword>Win32Proj</Keyword>
  49.     <RootNamespace>QuatDemo</RootNamespace>
  50.     <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
  51.   </PropertyGroup>
  52.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  53.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  54.     <ConfigurationType>Application</ConfigurationType>
  55.     <UseDebugLibraries>true</UseDebugLibraries>
  56.     <PlatformToolset>v140</PlatformToolset>
  57.     <CharacterSet>Unicode</CharacterSet>
  58.   </PropertyGroup>
  59.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  60.     <ConfigurationType>Application</ConfigurationType>
  61.     <UseDebugLibraries>true</UseDebugLibraries>
  62.     <PlatformToolset>v140</PlatformToolset>
  63.     <CharacterSet>Unicode</CharacterSet>
  64.   </PropertyGroup>
  65.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  66.     <ConfigurationType>Application</ConfigurationType>
  67.     <UseDebugLibraries>false</UseDebugLibraries>
  68.     <PlatformToolset>v140</PlatformToolset>
  69.     <WholeProgramOptimization>true</WholeProgramOptimization>
  70.     <CharacterSet>Unicode</CharacterSet>
  71.   </PropertyGroup>
  72.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  73.     <ConfigurationType>Application</ConfigurationType>
  74.     <UseDebugLibraries>false</UseDebugLibraries>
  75.     <PlatformToolset>v140</PlatformToolset>
  76.     <WholeProgramOptimization>true</WholeProgramOptimization>
  77.     <CharacterSet>Unicode</CharacterSet>
  78.   </PropertyGroup>
  79.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  80.   <ImportGroup Label="ExtensionSettings">
  81.   </ImportGroup>
  82.   <ImportGroup Label="Shared">
  83.   </ImportGroup>
  84.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  85.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  86.   </ImportGroup>
  87.   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  88.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  89.   </ImportGroup>
  90.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  91.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  92.   </ImportGroup>
  93.   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  94.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  95.   </ImportGroup>
  96.   <PropertyGroup Label="UserMacros" />
  97.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  98.     <LinkIncremental>true</LinkIncremental>
  99.   </PropertyGroup>
  100.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  101.     <LinkIncremental>true</LinkIncremental>
  102.   </PropertyGroup>
  103.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  104.     <LinkIncremental>false</LinkIncremental>
  105.   </PropertyGroup>
  106.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  107.     <LinkIncremental>false</LinkIncremental>
  108.   </PropertyGroup>
  109.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  110.     <ClCompile>
  111.       <PrecompiledHeader>
  112.       </PrecompiledHeader>
  113.       <WarningLevel>Level3</WarningLevel>
  114.       <Optimization>Disabled</Optimization>
  115.       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  116.     </ClCompile>
  117.     <Link>
  118.       <SubSystem>Windows</SubSystem>
  119.       <GenerateDebugInformation>true</GenerateDebugInformation>
  120.     </Link>
  121.   </ItemDefinitionGroup>
  122.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  123.     <ClCompile>
  124.       <PrecompiledHeader>
  125.       </PrecompiledHeader>
  126.       <WarningLevel>Level3</WarningLevel>
  127.       <Optimization>Disabled</Optimization>
  128.       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  129.     </ClCompile>
  130.     <Link>
  131.       <SubSystem>Windows</SubSystem>
  132.       <GenerateDebugInformation>true</GenerateDebugInformation>
  133.     </Link>
  134.   </ItemDefinitionGroup>
  135.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  136.     <ClCompile>
  137.       <WarningLevel>Level3</WarningLevel>
  138.       <PrecompiledHeader>
  139.       </PrecompiledHeader>
  140.       <Optimization>MaxSpeed</Optimization>
  141.       <FunctionLevelLinking>true</FunctionLevelLinking>
  142.       <IntrinsicFunctions>true</IntrinsicFunctions>
  143.       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  144.     </ClCompile>
  145.     <Link>
  146.       <SubSystem>Windows</SubSystem>
  147.       <GenerateDebugInformation>true</GenerateDebugInformation>
  148.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  149.       <OptimizeReferences>true</OptimizeReferences>
  150.     </Link>
  151.   </ItemDefinitionGroup>
  152.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  153.     <ClCompile>
  154.       <WarningLevel>Level3</WarningLevel>
  155.       <PrecompiledHeader>
  156.       </PrecompiledHeader>
  157.       <Optimization>MaxSpeed</Optimization>
  158.       <FunctionLevelLinking>true</FunctionLevelLinking>
  159.       <IntrinsicFunctions>true</IntrinsicFunctions>
  160.       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  161.     </ClCompile>
  162.     <Link>
  163.       <SubSystem>Windows</SubSystem>
  164.       <GenerateDebugInformation>true</GenerateDebugInformation>
  165.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  166.       <OptimizeReferences>true</OptimizeReferences>
  167.     </Link>
  168.   </ItemDefinitionGroup>
  169.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  170.   <ImportGroup Label="ExtensionTargets">
  171.   </ImportGroup>
  172. </Project>