goat3d

view 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 source
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="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 <ClInclude Include="src\camera.h" />
23 <ClInclude Include="src\chunk.h" />
24 <ClInclude Include="src\goat3d.h" />
25 <ClInclude Include="src\goat3d_impl.h" />
26 <ClInclude Include="src\light.h" />
27 <ClInclude Include="src\material.h" />
28 <ClInclude Include="src\mesh.h" />
29 <ClInclude Include="src\object.h" />
30 <ClInclude Include="src\opengl.h" />
31 <ClInclude Include="src\xform_node.h" />
32 </ItemGroup>
33 <ItemGroup>
34 <ClCompile Include="src\goat3d.cc" />
35 <ClCompile Include="src\mesh.cc" />
36 <ClCompile Include="src\object.cc" />
37 <ClCompile Include="src\opengl.cc" />
38 <ClCompile Include="src\xform_node.cc" />
39 </ItemGroup>
40 <PropertyGroup Label="Globals">
41 <ProjectGuid>{86BF319B-9222-4805-918D-DC1B9F77BCEF}</ProjectGuid>
42 <Keyword>Win32Proj</Keyword>
43 <RootNamespace>goat3d</RootNamespace>
44 </PropertyGroup>
45 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
47 <ConfigurationType>StaticLibrary</ConfigurationType>
48 <UseDebugLibraries>true</UseDebugLibraries>
49 <PlatformToolset>v110</PlatformToolset>
50 <CharacterSet>Unicode</CharacterSet>
51 </PropertyGroup>
52 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
53 <ConfigurationType>StaticLibrary</ConfigurationType>
54 <UseDebugLibraries>true</UseDebugLibraries>
55 <PlatformToolset>v110</PlatformToolset>
56 <CharacterSet>Unicode</CharacterSet>
57 </PropertyGroup>
58 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
59 <ConfigurationType>StaticLibrary</ConfigurationType>
60 <UseDebugLibraries>false</UseDebugLibraries>
61 <PlatformToolset>v110</PlatformToolset>
62 <WholeProgramOptimization>true</WholeProgramOptimization>
63 <CharacterSet>Unicode</CharacterSet>
64 </PropertyGroup>
65 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
66 <ConfigurationType>StaticLibrary</ConfigurationType>
67 <UseDebugLibraries>false</UseDebugLibraries>
68 <PlatformToolset>v110</PlatformToolset>
69 <WholeProgramOptimization>true</WholeProgramOptimization>
70 <CharacterSet>Unicode</CharacterSet>
71 </PropertyGroup>
72 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
73 <ImportGroup Label="ExtensionSettings">
74 </ImportGroup>
75 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
76 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
77 </ImportGroup>
78 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
79 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
80 </ImportGroup>
81 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
83 </ImportGroup>
84 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
85 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
86 </ImportGroup>
87 <PropertyGroup Label="UserMacros" />
88 <PropertyGroup />
89 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
90 <ClCompile>
91 <PrecompiledHeader>
92 </PrecompiledHeader>
93 <WarningLevel>Level3</WarningLevel>
94 <Optimization>Disabled</Optimization>
95 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
96 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
97 </ClCompile>
98 <Link>
99 <SubSystem>Windows</SubSystem>
100 <GenerateDebugInformation>true</GenerateDebugInformation>
101 </Link>
102 </ItemDefinitionGroup>
103 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
104 <ClCompile>
105 <PrecompiledHeader>
106 </PrecompiledHeader>
107 <WarningLevel>Level3</WarningLevel>
108 <Optimization>Disabled</Optimization>
109 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
111 </ClCompile>
112 <Link>
113 <SubSystem>Windows</SubSystem>
114 <GenerateDebugInformation>true</GenerateDebugInformation>
115 </Link>
116 </ItemDefinitionGroup>
117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
118 <ClCompile>
119 <WarningLevel>Level3</WarningLevel>
120 <PrecompiledHeader>
121 </PrecompiledHeader>
122 <Optimization>MaxSpeed</Optimization>
123 <FunctionLevelLinking>true</FunctionLevelLinking>
124 <IntrinsicFunctions>true</IntrinsicFunctions>
125 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
126 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
127 </ClCompile>
128 <Link>
129 <SubSystem>Windows</SubSystem>
130 <GenerateDebugInformation>true</GenerateDebugInformation>
131 <EnableCOMDATFolding>true</EnableCOMDATFolding>
132 <OptimizeReferences>true</OptimizeReferences>
133 </Link>
134 </ItemDefinitionGroup>
135 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
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;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
144 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
145 </ClCompile>
146 <Link>
147 <SubSystem>Windows</SubSystem>
148 <GenerateDebugInformation>true</GenerateDebugInformation>
149 <EnableCOMDATFolding>true</EnableCOMDATFolding>
150 <OptimizeReferences>true</OptimizeReferences>
151 </Link>
152 </ItemDefinitionGroup>
153 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
154 <ImportGroup Label="ExtensionTargets">
155 </ImportGroup>
156 </Project>