erebus

view liberebus/liberebus.vcxproj @ 1:59a72293f9bd

continuing
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 28 Apr 2014 05:58:22 +0300
parents 4abdce1361b9
children d2b6cee8ea5c
line source
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="12.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 <ItemGroup>
14 <ClInclude Include="src\brdf.h" />
15 <ClInclude Include="src\bvol.h" />
16 <ClInclude Include="src\camera.h" />
17 <ClInclude Include="src\color.h" />
18 <ClInclude Include="src\erebus.h" />
19 <ClInclude Include="src\erebus_impl.h" />
20 <ClInclude Include="src\geomobj.h" />
21 <ClInclude Include="src\image.h" />
22 <ClInclude Include="src\object.h" />
23 <ClInclude Include="src\scene.h" />
24 <ClInclude Include="src\snode.h" />
25 <ClInclude Include="src\texture.h" />
26 </ItemGroup>
27 <ItemGroup>
28 <ClCompile Include="src\brdf.cc" />
29 <ClCompile Include="src\bvol.cc" />
30 <ClCompile Include="src\camera.cc" />
31 <ClCompile Include="src\erebus.cc" />
32 <ClCompile Include="src\object.cc" />
33 <ClCompile Include="src\scene.cc" />
34 <ClCompile Include="src\snode.cc" />
35 </ItemGroup>
36 <ItemGroup>
37 <None Include="src\image.inl" />
38 </ItemGroup>
39 <PropertyGroup Label="Globals">
40 <ProjectGuid>{6172E997-FB04-4DB6-A1CC-20135451E62B}</ProjectGuid>
41 <Keyword>Win32Proj</Keyword>
42 <RootNamespace>liberebus</RootNamespace>
43 </PropertyGroup>
44 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
46 <ConfigurationType>StaticLibrary</ConfigurationType>
47 <UseDebugLibraries>true</UseDebugLibraries>
48 <PlatformToolset>v120</PlatformToolset>
49 <CharacterSet>Unicode</CharacterSet>
50 </PropertyGroup>
51 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
52 <ConfigurationType>StaticLibrary</ConfigurationType>
53 <UseDebugLibraries>false</UseDebugLibraries>
54 <PlatformToolset>v120</PlatformToolset>
55 <WholeProgramOptimization>true</WholeProgramOptimization>
56 <CharacterSet>Unicode</CharacterSet>
57 </PropertyGroup>
58 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
59 <ImportGroup Label="ExtensionSettings">
60 </ImportGroup>
61 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
63 </ImportGroup>
64 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
65 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66 </ImportGroup>
67 <PropertyGroup Label="UserMacros" />
68 <PropertyGroup />
69 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
70 <ClCompile>
71 <PrecompiledHeader>
72 </PrecompiledHeader>
73 <WarningLevel>Level3</WarningLevel>
74 <Optimization>Disabled</Optimization>
75 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
77 </ClCompile>
78 <Link>
79 <SubSystem>Windows</SubSystem>
80 <GenerateDebugInformation>true</GenerateDebugInformation>
81 </Link>
82 </ItemDefinitionGroup>
83 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
84 <ClCompile>
85 <WarningLevel>Level3</WarningLevel>
86 <PrecompiledHeader>
87 </PrecompiledHeader>
88 <Optimization>MaxSpeed</Optimization>
89 <FunctionLevelLinking>true</FunctionLevelLinking>
90 <IntrinsicFunctions>true</IntrinsicFunctions>
91 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
92 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
93 </ClCompile>
94 <Link>
95 <SubSystem>Windows</SubSystem>
96 <GenerateDebugInformation>true</GenerateDebugInformation>
97 <EnableCOMDATFolding>true</EnableCOMDATFolding>
98 <OptimizeReferences>true</OptimizeReferences>
99 </Link>
100 </ItemDefinitionGroup>
101 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
102 <ImportGroup Label="ExtensionTargets">
103 </ImportGroup>
104 </Project>