goat3d
diff goat3d.vcxproj @ 5:fca2ea844875
added rudimentary visual studio project
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 19 Aug 2013 05:18:08 +0300 |
parents | |
children | 0a49bdf1af6f |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/goat3d.vcxproj Mon Aug 19 05:18:08 2013 +0300 1.3 @@ -0,0 +1,156 @@ 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="Debug|x64"> 1.12 + <Configuration>Debug</Configuration> 1.13 + <Platform>x64</Platform> 1.14 + </ProjectConfiguration> 1.15 + <ProjectConfiguration Include="Release|Win32"> 1.16 + <Configuration>Release</Configuration> 1.17 + <Platform>Win32</Platform> 1.18 + </ProjectConfiguration> 1.19 + <ProjectConfiguration Include="Release|x64"> 1.20 + <Configuration>Release</Configuration> 1.21 + <Platform>x64</Platform> 1.22 + </ProjectConfiguration> 1.23 + </ItemGroup> 1.24 + <ItemGroup> 1.25 + <ClInclude Include="src\camera.h" /> 1.26 + <ClInclude Include="src\chunk.h" /> 1.27 + <ClInclude Include="src\goat3d.h" /> 1.28 + <ClInclude Include="src\goat3d_impl.h" /> 1.29 + <ClInclude Include="src\light.h" /> 1.30 + <ClInclude Include="src\material.h" /> 1.31 + <ClInclude Include="src\mesh.h" /> 1.32 + <ClInclude Include="src\object.h" /> 1.33 + <ClInclude Include="src\opengl.h" /> 1.34 + <ClInclude Include="src\xform_node.h" /> 1.35 + </ItemGroup> 1.36 + <ItemGroup> 1.37 + <ClCompile Include="src\goat3d.cc" /> 1.38 + <ClCompile Include="src\mesh.cc" /> 1.39 + <ClCompile Include="src\object.cc" /> 1.40 + <ClCompile Include="src\opengl.cc" /> 1.41 + <ClCompile Include="src\xform_node.cc" /> 1.42 + </ItemGroup> 1.43 + <PropertyGroup Label="Globals"> 1.44 + <ProjectGuid>{86BF319B-9222-4805-918D-DC1B9F77BCEF}</ProjectGuid> 1.45 + <Keyword>Win32Proj</Keyword> 1.46 + <RootNamespace>goat3d</RootNamespace> 1.47 + </PropertyGroup> 1.48 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.49 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.50 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.51 + <UseDebugLibraries>true</UseDebugLibraries> 1.52 + <PlatformToolset>v110</PlatformToolset> 1.53 + <CharacterSet>Unicode</CharacterSet> 1.54 + </PropertyGroup> 1.55 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 1.56 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.57 + <UseDebugLibraries>true</UseDebugLibraries> 1.58 + <PlatformToolset>v110</PlatformToolset> 1.59 + <CharacterSet>Unicode</CharacterSet> 1.60 + </PropertyGroup> 1.61 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.62 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.63 + <UseDebugLibraries>false</UseDebugLibraries> 1.64 + <PlatformToolset>v110</PlatformToolset> 1.65 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.66 + <CharacterSet>Unicode</CharacterSet> 1.67 + </PropertyGroup> 1.68 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 1.69 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.70 + <UseDebugLibraries>false</UseDebugLibraries> 1.71 + <PlatformToolset>v110</PlatformToolset> 1.72 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.73 + <CharacterSet>Unicode</CharacterSet> 1.74 + </PropertyGroup> 1.75 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.76 + <ImportGroup Label="ExtensionSettings"> 1.77 + </ImportGroup> 1.78 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.79 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.80 + </ImportGroup> 1.81 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 1.82 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.83 + </ImportGroup> 1.84 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.85 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.86 + </ImportGroup> 1.87 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 1.88 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.89 + </ImportGroup> 1.90 + <PropertyGroup Label="UserMacros" /> 1.91 + <PropertyGroup /> 1.92 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.93 + <ClCompile> 1.94 + <PrecompiledHeader> 1.95 + </PrecompiledHeader> 1.96 + <WarningLevel>Level3</WarningLevel> 1.97 + <Optimization>Disabled</Optimization> 1.98 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.99 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.100 + </ClCompile> 1.101 + <Link> 1.102 + <SubSystem>Windows</SubSystem> 1.103 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.104 + </Link> 1.105 + </ItemDefinitionGroup> 1.106 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 1.107 + <ClCompile> 1.108 + <PrecompiledHeader> 1.109 + </PrecompiledHeader> 1.110 + <WarningLevel>Level3</WarningLevel> 1.111 + <Optimization>Disabled</Optimization> 1.112 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.113 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.114 + </ClCompile> 1.115 + <Link> 1.116 + <SubSystem>Windows</SubSystem> 1.117 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.118 + </Link> 1.119 + </ItemDefinitionGroup> 1.120 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.121 + <ClCompile> 1.122 + <WarningLevel>Level3</WarningLevel> 1.123 + <PrecompiledHeader> 1.124 + </PrecompiledHeader> 1.125 + <Optimization>MaxSpeed</Optimization> 1.126 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.127 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.128 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.129 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.130 + </ClCompile> 1.131 + <Link> 1.132 + <SubSystem>Windows</SubSystem> 1.133 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.134 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.135 + <OptimizeReferences>true</OptimizeReferences> 1.136 + </Link> 1.137 + </ItemDefinitionGroup> 1.138 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 1.139 + <ClCompile> 1.140 + <WarningLevel>Level3</WarningLevel> 1.141 + <PrecompiledHeader> 1.142 + </PrecompiledHeader> 1.143 + <Optimization>MaxSpeed</Optimization> 1.144 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.145 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.146 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.147 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.148 + </ClCompile> 1.149 + <Link> 1.150 + <SubSystem>Windows</SubSystem> 1.151 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.152 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.153 + <OptimizeReferences>true</OptimizeReferences> 1.154 + </Link> 1.155 + </ItemDefinitionGroup> 1.156 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.157 + <ImportGroup Label="ExtensionTargets"> 1.158 + </ImportGroup> 1.159 +</Project> 1.160 \ No newline at end of file