erebus
diff 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 diff
1.1 --- a/liberebus/liberebus.vcxproj Sun May 25 02:00:07 2014 +0300 1.2 +++ b/liberebus/liberebus.vcxproj Sun May 25 02:23:39 2014 +0300 1.3 @@ -19,7 +19,9 @@ 1.4 <ClInclude Include="src\erebus_impl.h" /> 1.5 <ClInclude Include="src\geomobj.h" /> 1.6 <ClInclude Include="src\image.h" /> 1.7 + <ClInclude Include="src\material.h" /> 1.8 <ClInclude Include="src\object.h" /> 1.9 + <ClInclude Include="src\rt.h" /> 1.10 <ClInclude Include="src\scene.h" /> 1.11 <ClInclude Include="src\snode.h" /> 1.12 <ClInclude Include="src\texture.h" /> 1.13 @@ -29,7 +31,10 @@ 1.14 <ClCompile Include="src\bvol.cc" /> 1.15 <ClCompile Include="src\camera.cc" /> 1.16 <ClCompile Include="src\erebus.cc" /> 1.17 + <ClCompile Include="src\geomobj.cc" /> 1.18 + <ClCompile Include="src\material.cc" /> 1.19 <ClCompile Include="src\object.cc" /> 1.20 + <ClCompile Include="src\rt.cc" /> 1.21 <ClCompile Include="src\scene.cc" /> 1.22 <ClCompile Include="src\snode.cc" /> 1.23 </ItemGroup> 1.24 @@ -46,14 +51,14 @@ 1.25 <ConfigurationType>StaticLibrary</ConfigurationType> 1.26 <UseDebugLibraries>true</UseDebugLibraries> 1.27 <PlatformToolset>v120</PlatformToolset> 1.28 - <CharacterSet>Unicode</CharacterSet> 1.29 + <CharacterSet>MultiByte</CharacterSet> 1.30 </PropertyGroup> 1.31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.32 <ConfigurationType>StaticLibrary</ConfigurationType> 1.33 <UseDebugLibraries>false</UseDebugLibraries> 1.34 <PlatformToolset>v120</PlatformToolset> 1.35 <WholeProgramOptimization>true</WholeProgramOptimization> 1.36 - <CharacterSet>Unicode</CharacterSet> 1.37 + <CharacterSet>MultiByte</CharacterSet> 1.38 </PropertyGroup> 1.39 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.40 <ImportGroup Label="ExtensionSettings"> 1.41 @@ -72,8 +77,8 @@ 1.42 </PrecompiledHeader> 1.43 <WarningLevel>Level3</WarningLevel> 1.44 <Optimization>Disabled</Optimization> 1.45 - <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.46 - <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.47 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_MATH_DEFINES;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.48 + <DisableSpecificWarnings>4244;4305</DisableSpecificWarnings> 1.49 </ClCompile> 1.50 <Link> 1.51 <SubSystem>Windows</SubSystem> 1.52 @@ -88,8 +93,8 @@ 1.53 <Optimization>MaxSpeed</Optimization> 1.54 <FunctionLevelLinking>true</FunctionLevelLinking> 1.55 <IntrinsicFunctions>true</IntrinsicFunctions> 1.56 - <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.57 - <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.58 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_MATH_DEFINES;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.59 + <DisableSpecificWarnings>4244;4305</DisableSpecificWarnings> 1.60 </ClCompile> 1.61 <Link> 1.62 <SubSystem>Windows</SubSystem>