goat3d

view goat3d.vcxproj @ 6:0a49bdf1af6f

windows stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 20 Aug 2013 05:38:38 +0300
parents fca2ea844875
children d1cebaf1d5c9
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 Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
89 <TargetName>$(ProjectName)-x64</TargetName>
90 </PropertyGroup>
91 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
92 <TargetName>$(ProjectName)-x64</TargetName>
93 </PropertyGroup>
94 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
95 <ClCompile>
96 <PrecompiledHeader>
97 </PrecompiledHeader>
98 <WarningLevel>Level3</WarningLevel>
99 <Optimization>Disabled</Optimization>
100 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
101 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
102 </ClCompile>
103 <Link>
104 <SubSystem>Windows</SubSystem>
105 <GenerateDebugInformation>true</GenerateDebugInformation>
106 </Link>
107 </ItemDefinitionGroup>
108 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
109 <ClCompile>
110 <PrecompiledHeader>
111 </PrecompiledHeader>
112 <WarningLevel>Level3</WarningLevel>
113 <Optimization>Disabled</Optimization>
114 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
115 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
116 </ClCompile>
117 <Link>
118 <SubSystem>Windows</SubSystem>
119 <GenerateDebugInformation>true</GenerateDebugInformation>
120 </Link>
121 </ItemDefinitionGroup>
122 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
123 <ClCompile>
124 <WarningLevel>Level3</WarningLevel>
125 <PrecompiledHeader>
126 </PrecompiledHeader>
127 <Optimization>MaxSpeed</Optimization>
128 <FunctionLevelLinking>true</FunctionLevelLinking>
129 <IntrinsicFunctions>true</IntrinsicFunctions>
130 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
131 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
132 </ClCompile>
133 <Link>
134 <SubSystem>Windows</SubSystem>
135 <GenerateDebugInformation>true</GenerateDebugInformation>
136 <EnableCOMDATFolding>true</EnableCOMDATFolding>
137 <OptimizeReferences>true</OptimizeReferences>
138 </Link>
139 </ItemDefinitionGroup>
140 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
141 <ClCompile>
142 <WarningLevel>Level3</WarningLevel>
143 <PrecompiledHeader>
144 </PrecompiledHeader>
145 <Optimization>MaxSpeed</Optimization>
146 <FunctionLevelLinking>true</FunctionLevelLinking>
147 <IntrinsicFunctions>true</IntrinsicFunctions>
148 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
149 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
150 </ClCompile>
151 <Link>
152 <SubSystem>Windows</SubSystem>
153 <GenerateDebugInformation>true</GenerateDebugInformation>
154 <EnableCOMDATFolding>true</EnableCOMDATFolding>
155 <OptimizeReferences>true</OptimizeReferences>
156 </Link>
157 </ItemDefinitionGroup>
158 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
159 <ImportGroup Label="ExtensionTargets">
160 </ImportGroup>
161 </Project>