dxtest2
diff dxtest2.vcxproj @ 0:6ed01ded71d8
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 23 Jun 2013 04:23:13 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dxtest2.vcxproj Sun Jun 23 04:23:13 2013 +0300 1.3 @@ -0,0 +1,93 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1.6 + <ItemGroup Label="ProjectConfigurations"> 1.7 + <ProjectConfiguration Include="Debug|Win32"> 1.8 + <Configuration>Debug</Configuration> 1.9 + <Platform>Win32</Platform> 1.10 + </ProjectConfiguration> 1.11 + <ProjectConfiguration Include="Release|Win32"> 1.12 + <Configuration>Release</Configuration> 1.13 + <Platform>Win32</Platform> 1.14 + </ProjectConfiguration> 1.15 + </ItemGroup> 1.16 + <PropertyGroup Label="Globals"> 1.17 + <ProjectGuid>{E1E84AA6-720A-4151-A96E-15D91EDE535C}</ProjectGuid> 1.18 + <Keyword>Win32Proj</Keyword> 1.19 + <RootNamespace>dxtest2</RootNamespace> 1.20 + </PropertyGroup> 1.21 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.22 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.23 + <ConfigurationType>Application</ConfigurationType> 1.24 + <UseDebugLibraries>true</UseDebugLibraries> 1.25 + <PlatformToolset>v110</PlatformToolset> 1.26 + <CharacterSet>MultiByte</CharacterSet> 1.27 + </PropertyGroup> 1.28 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.29 + <ConfigurationType>Application</ConfigurationType> 1.30 + <UseDebugLibraries>false</UseDebugLibraries> 1.31 + <PlatformToolset>v110</PlatformToolset> 1.32 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.33 + <CharacterSet>MultiByte</CharacterSet> 1.34 + </PropertyGroup> 1.35 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.36 + <ImportGroup Label="ExtensionSettings"> 1.37 + </ImportGroup> 1.38 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.39 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.40 + </ImportGroup> 1.41 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.42 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.43 + </ImportGroup> 1.44 + <PropertyGroup Label="UserMacros" /> 1.45 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.46 + <LinkIncremental>true</LinkIncremental> 1.47 + <LibraryPath>C:\Users\nuclear\code\dxtest2\$(Configuration);$(LibraryPath)</LibraryPath> 1.48 + <IncludePath>C:\Users\nuclear\code\d3dut\include;$(IncludePath)</IncludePath> 1.49 + </PropertyGroup> 1.50 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.51 + <LinkIncremental>false</LinkIncremental> 1.52 + <LibraryPath>C:\Users\nuclear\code\dxtest2\$(Configuration);$(LibraryPath)</LibraryPath> 1.53 + <IncludePath>C:\Users\nuclear\code\d3dut\include;$(IncludePath)</IncludePath> 1.54 + </PropertyGroup> 1.55 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.56 + <ClCompile> 1.57 + <PrecompiledHeader> 1.58 + </PrecompiledHeader> 1.59 + <WarningLevel>Level3</WarningLevel> 1.60 + <Optimization>Disabled</Optimization> 1.61 + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.62 + </ClCompile> 1.63 + <Link> 1.64 + <SubSystem>Console</SubSystem> 1.65 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.66 + </Link> 1.67 + </ItemDefinitionGroup> 1.68 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.69 + <ClCompile> 1.70 + <WarningLevel>Level3</WarningLevel> 1.71 + <PrecompiledHeader> 1.72 + </PrecompiledHeader> 1.73 + <Optimization>MaxSpeed</Optimization> 1.74 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.75 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.76 + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.77 + </ClCompile> 1.78 + <Link> 1.79 + <SubSystem>Console</SubSystem> 1.80 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.81 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.82 + <OptimizeReferences>true</OptimizeReferences> 1.83 + </Link> 1.84 + </ItemDefinitionGroup> 1.85 + <ItemGroup> 1.86 + <ClCompile Include="src\main.cc" /> 1.87 + <ClCompile Include="src\mesh.cc" /> 1.88 + </ItemGroup> 1.89 + <ItemGroup> 1.90 + <ClInclude Include="src\mesh.h" /> 1.91 + <ClInclude Include="src\shader.h" /> 1.92 + </ItemGroup> 1.93 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.94 + <ImportGroup Label="ExtensionTargets"> 1.95 + </ImportGroup> 1.96 +</Project> 1.97 \ No newline at end of file