erebus

view liberebus/liberebus.vcxproj @ 16:d2b6cee8ea5c

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