erebus
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/liberebus/liberebus.vcxproj Sun Apr 27 16:02:47 2014 +0300 1.3 @@ -0,0 +1,102 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1.6 + <ItemGroup Label="ProjectConfigurations"> 1.7 + <ProjectConfiguration Include="Debug|Win32"> 1.8 + <Configuration>Debug</Configuration> 1.9 + <Platform>Win32</Platform> 1.10 + </ProjectConfiguration> 1.11 + <ProjectConfiguration Include="Release|Win32"> 1.12 + <Configuration>Release</Configuration> 1.13 + <Platform>Win32</Platform> 1.14 + </ProjectConfiguration> 1.15 + </ItemGroup> 1.16 + <ItemGroup> 1.17 + <ClInclude Include="src\brdf.h" /> 1.18 + <ClInclude Include="src\bvol.h" /> 1.19 + <ClInclude Include="src\camera.h" /> 1.20 + <ClInclude Include="src\color.h" /> 1.21 + <ClInclude Include="src\erebus.h" /> 1.22 + <ClInclude Include="src\erebus_impl.h" /> 1.23 + <ClInclude Include="src\geomobj.h" /> 1.24 + <ClInclude Include="src\image.h" /> 1.25 + <ClInclude Include="src\object.h" /> 1.26 + <ClInclude Include="src\scene.h" /> 1.27 + <ClInclude Include="src\snode.h" /> 1.28 + <ClInclude Include="src\texture.h" /> 1.29 + </ItemGroup> 1.30 + <ItemGroup> 1.31 + <ClCompile Include="src\brdf.cc" /> 1.32 + <ClCompile Include="src\bvol.cc" /> 1.33 + <ClCompile Include="src\camera.cc" /> 1.34 + <ClCompile Include="src\erebus.cc" /> 1.35 + <ClCompile Include="src\object.cc" /> 1.36 + </ItemGroup> 1.37 + <ItemGroup> 1.38 + <None Include="src\image.inl" /> 1.39 + </ItemGroup> 1.40 + <PropertyGroup Label="Globals"> 1.41 + <ProjectGuid>{6172E997-FB04-4DB6-A1CC-20135451E62B}</ProjectGuid> 1.42 + <Keyword>Win32Proj</Keyword> 1.43 + <RootNamespace>liberebus</RootNamespace> 1.44 + </PropertyGroup> 1.45 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.46 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.47 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.48 + <UseDebugLibraries>true</UseDebugLibraries> 1.49 + <PlatformToolset>v120</PlatformToolset> 1.50 + <CharacterSet>Unicode</CharacterSet> 1.51 + </PropertyGroup> 1.52 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.53 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.54 + <UseDebugLibraries>false</UseDebugLibraries> 1.55 + <PlatformToolset>v120</PlatformToolset> 1.56 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.57 + <CharacterSet>Unicode</CharacterSet> 1.58 + </PropertyGroup> 1.59 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.60 + <ImportGroup Label="ExtensionSettings"> 1.61 + </ImportGroup> 1.62 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.63 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.64 + </ImportGroup> 1.65 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.66 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.67 + </ImportGroup> 1.68 + <PropertyGroup Label="UserMacros" /> 1.69 + <PropertyGroup /> 1.70 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.71 + <ClCompile> 1.72 + <PrecompiledHeader> 1.73 + </PrecompiledHeader> 1.74 + <WarningLevel>Level3</WarningLevel> 1.75 + <Optimization>Disabled</Optimization> 1.76 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.77 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.78 + </ClCompile> 1.79 + <Link> 1.80 + <SubSystem>Windows</SubSystem> 1.81 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.82 + </Link> 1.83 + </ItemDefinitionGroup> 1.84 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.85 + <ClCompile> 1.86 + <WarningLevel>Level3</WarningLevel> 1.87 + <PrecompiledHeader> 1.88 + </PrecompiledHeader> 1.89 + <Optimization>MaxSpeed</Optimization> 1.90 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.91 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.92 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.93 + <DisableSpecificWarnings>4244</DisableSpecificWarnings> 1.94 + </ClCompile> 1.95 + <Link> 1.96 + <SubSystem>Windows</SubSystem> 1.97 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.98 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.99 + <OptimizeReferences>true</OptimizeReferences> 1.100 + </Link> 1.101 + </ItemDefinitionGroup> 1.102 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.103 + <ImportGroup Label="ExtensionTargets"> 1.104 + </ImportGroup> 1.105 +</Project> 1.106 \ No newline at end of file