erebus

diff 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 diff
     1.1 --- a/liberebus/liberebus.vcxproj	Thu May 29 07:47:52 2014 +0300
     1.2 +++ b/liberebus/liberebus.vcxproj	Fri May 30 06:56:44 2014 +0300
     1.3 @@ -25,6 +25,7 @@
     1.4      <ClInclude Include="src\scene.h" />
     1.5      <ClInclude Include="src\snode.h" />
     1.6      <ClInclude Include="src\texture.h" />
     1.7 +    <ClInclude Include="src\threadpool.h" />
     1.8    </ItemGroup>
     1.9    <ItemGroup>
    1.10      <ClCompile Include="src\brdf.cc" />
    1.11 @@ -37,6 +38,7 @@
    1.12      <ClCompile Include="src\rt.cc" />
    1.13      <ClCompile Include="src\scene.cc" />
    1.14      <ClCompile Include="src\snode.cc" />
    1.15 +    <ClCompile Include="src\threadpool.cc" />
    1.16    </ItemGroup>
    1.17    <ItemGroup>
    1.18      <None Include="src\image.inl" />
    1.19 @@ -78,7 +80,7 @@
    1.20        <WarningLevel>Level3</WarningLevel>
    1.21        <Optimization>Disabled</Optimization>
    1.22        <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_MATH_DEFINES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    1.23 -      <DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
    1.24 +      <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
    1.25      </ClCompile>
    1.26      <Link>
    1.27        <SubSystem>Windows</SubSystem>
    1.28 @@ -94,7 +96,7 @@
    1.29        <FunctionLevelLinking>true</FunctionLevelLinking>
    1.30        <IntrinsicFunctions>true</IntrinsicFunctions>
    1.31        <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_MATH_DEFINES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    1.32 -      <DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
    1.33 +      <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
    1.34      </ClCompile>
    1.35      <Link>
    1.36        <SubSystem>Windows</SubSystem>