1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="4.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="Release|Win32"> 9 <Configuration>Release</Configuration> 10 <Platform>Win32</Platform> 11 </ProjectConfiguration> 12 </ItemGroup> 13 <PropertyGroup Label="Globals"> 14 <ProjectGuid>{5366F4FD-0E6C-40CC-B2F2-CE3D350F0729}</ProjectGuid> 15 <Keyword>Win32Proj</Keyword> 16 <RootNamespace>d3d10tri</RootNamespace> 17 </PropertyGroup> 18 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 20 <ConfigurationType>Application</ConfigurationType> 21 <UseDebugLibraries>true</UseDebugLibraries> 22 <CharacterSet>MultiByte</CharacterSet> 23 </PropertyGroup> 24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 25 <ConfigurationType>Application</ConfigurationType> 26 <UseDebugLibraries>false</UseDebugLibraries> 27 <WholeProgramOptimization>true</WholeProgramOptimization> 28 <CharacterSet>MultiByte</CharacterSet> 29 </PropertyGroup> 30 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 31 <ImportGroup Label="ExtensionSettings"> 32 </ImportGroup> 33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 34 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 35 </ImportGroup> 36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 38 </ImportGroup> 39 <PropertyGroup Label="UserMacros" /> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 41 <LinkIncremental>true</LinkIncremental> 42 </PropertyGroup> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 44 <LinkIncremental>false</LinkIncremental> 45 </PropertyGroup> 46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 47 <ClCompile> 48 <PrecompiledHeader>NotUsing</PrecompiledHeader> 49 <WarningLevel>Level3</WarningLevel> 50 <Optimization>Disabled</Optimization> 51 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 52 <AdditionalIncludeDirectories>$(SolutionDir)\d3d10app</AdditionalIncludeDirectories> 53 </ClCompile> 54 <Link> 55 <SubSystem>Console</SubSystem> 56 <GenerateDebugInformation>true</GenerateDebugInformation> 57 <AdditionalDependencies>d3d10.lib;d3d10_1.lib;%(AdditionalDependencies)</AdditionalDependencies> 58 </Link> 59 </ItemDefinitionGroup> 60 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 61 <ClCompile> 62 <WarningLevel>Level3</WarningLevel> 63 <PrecompiledHeader>NotUsing</PrecompiledHeader> 64 <Optimization>MaxSpeed</Optimization> 65 <FunctionLevelLinking>true</FunctionLevelLinking> 66 <IntrinsicFunctions>true</IntrinsicFunctions> 67 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 68 <AdditionalIncludeDirectories>$(SolutionDir)\d3d10app</AdditionalIncludeDirectories> 69 </ClCompile> 70 <Link> 71 <SubSystem>Console</SubSystem> 72 <GenerateDebugInformation>true</GenerateDebugInformation> 73 <EnableCOMDATFolding>true</EnableCOMDATFolding> 74 <OptimizeReferences>true</OptimizeReferences> 75 <AdditionalDependencies>d3d10.lib;d3d10_1.lib;%(AdditionalDependencies)</AdditionalDependencies> 76 </Link> 77 </ItemDefinitionGroup> 78 <ItemGroup> 79 <CustomBuild Include="d3d10tri.hlsl"> 80 <FileType>Document</FileType> 81 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).ps.h /Eps /Tps_4_0 %(Identity) 82 "$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).vs.h /Evs /Tvs_4_0 %(Identity)</Command> 83 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(Identity).ps.h;%(Identity).vs.h;%(Outputs)</Outputs> 84 </CustomBuild> 85 </ItemGroup> 86 <ItemGroup> 87 <ClInclude Include="..\d3d10app\d3d10app.h" /> 88 <ClInclude Include="d3d10tri.hlsl.ps.h" /> 89 <ClInclude Include="d3d10tri.hlsl.vs.h" /> 90 </ItemGroup> 91 <ItemGroup> 92 <ClCompile Include="..\d3d10app\d3d10winmain.cpp" /> 93 <ClCompile Include="d3d10tri.cpp" /> 94 </ItemGroup> 95 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 96 <ImportGroup Label="ExtensionTargets"> 97 </ImportGroup> 98 </Project>