erebus

view liberebus/liberebus.vcxproj @ 0:4abdce1361b9

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 27 Apr 2014 16:02:47 +0300
parents
children 59a72293f9bd
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 </ItemGroup>
34 <ItemGroup>
35 <None Include="src\image.inl" />
36 </ItemGroup>
37 <PropertyGroup Label="Globals">
38 <ProjectGuid>{6172E997-FB04-4DB6-A1CC-20135451E62B}</ProjectGuid>
39 <Keyword>Win32Proj</Keyword>
40 <RootNamespace>liberebus</RootNamespace>
41 </PropertyGroup>
42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
44 <ConfigurationType>StaticLibrary</ConfigurationType>
45 <UseDebugLibraries>true</UseDebugLibraries>
46 <PlatformToolset>v120</PlatformToolset>
47 <CharacterSet>Unicode</CharacterSet>
48 </PropertyGroup>
49 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
50 <ConfigurationType>StaticLibrary</ConfigurationType>
51 <UseDebugLibraries>false</UseDebugLibraries>
52 <PlatformToolset>v120</PlatformToolset>
53 <WholeProgramOptimization>true</WholeProgramOptimization>
54 <CharacterSet>Unicode</CharacterSet>
55 </PropertyGroup>
56 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
57 <ImportGroup Label="ExtensionSettings">
58 </ImportGroup>
59 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
60 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
61 </ImportGroup>
62 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64 </ImportGroup>
65 <PropertyGroup Label="UserMacros" />
66 <PropertyGroup />
67 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
68 <ClCompile>
69 <PrecompiledHeader>
70 </PrecompiledHeader>
71 <WarningLevel>Level3</WarningLevel>
72 <Optimization>Disabled</Optimization>
73 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
74 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
75 </ClCompile>
76 <Link>
77 <SubSystem>Windows</SubSystem>
78 <GenerateDebugInformation>true</GenerateDebugInformation>
79 </Link>
80 </ItemDefinitionGroup>
81 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82 <ClCompile>
83 <WarningLevel>Level3</WarningLevel>
84 <PrecompiledHeader>
85 </PrecompiledHeader>
86 <Optimization>MaxSpeed</Optimization>
87 <FunctionLevelLinking>true</FunctionLevelLinking>
88 <IntrinsicFunctions>true</IntrinsicFunctions>
89 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
90 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
91 </ClCompile>
92 <Link>
93 <SubSystem>Windows</SubSystem>
94 <GenerateDebugInformation>true</GenerateDebugInformation>
95 <EnableCOMDATFolding>true</EnableCOMDATFolding>
96 <OptimizeReferences>true</OptimizeReferences>
97 </Link>
98 </ItemDefinitionGroup>
99 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
100 <ImportGroup Label="ExtensionTargets">
101 </ImportGroup>
102 </Project>