erebus

view liberebus/liberebus.vcxproj @ 24:4336acf8389d

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