sgl
diff sgl.vcxproj @ 24:23a01d912cf8
on a whim, added vs2010 projects
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 27 Jun 2011 10:49:01 +0300 |
parents | |
children | 25de96fb1526 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sgl.vcxproj Mon Jun 27 10:49:01 2011 +0300 1.3 @@ -0,0 +1,90 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<Project DefaultTargets="Build" ToolsVersion="4.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 + <ClCompile Include="src\cb.c" /> 1.18 + <ClCompile Include="src\log.c" /> 1.19 + <ClCompile Include="src\modules.c" /> 1.20 + <ClCompile Include="src\sgl.c" /> 1.21 + <ClCompile Include="src\wsys.c" /> 1.22 + <ClCompile Include="src\wsys_glut.c" /> 1.23 + <ClCompile Include="src\wsys_sdl.c" /> 1.24 + </ItemGroup> 1.25 + <ItemGroup> 1.26 + <ClInclude Include="src\config.h" /> 1.27 + <ClInclude Include="src\log.h" /> 1.28 + <ClInclude Include="src\wsys.h" /> 1.29 + </ItemGroup> 1.30 + <PropertyGroup Label="Globals"> 1.31 + <ProjectGuid>{5DA1BC2D-9C03-425E-BE3A-AAF75437045B}</ProjectGuid> 1.32 + <Keyword>Win32Proj</Keyword> 1.33 + <RootNamespace>sgl</RootNamespace> 1.34 + </PropertyGroup> 1.35 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.36 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.37 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.38 + <UseDebugLibraries>true</UseDebugLibraries> 1.39 + <CharacterSet>Unicode</CharacterSet> 1.40 + </PropertyGroup> 1.41 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.42 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.43 + <UseDebugLibraries>false</UseDebugLibraries> 1.44 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.45 + <CharacterSet>Unicode</CharacterSet> 1.46 + </PropertyGroup> 1.47 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.48 + <ImportGroup Label="ExtensionSettings"> 1.49 + </ImportGroup> 1.50 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.51 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.52 + </ImportGroup> 1.53 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.54 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.55 + </ImportGroup> 1.56 + <PropertyGroup Label="UserMacros" /> 1.57 + <PropertyGroup /> 1.58 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.59 + <ClCompile> 1.60 + <PrecompiledHeader> 1.61 + </PrecompiledHeader> 1.62 + <WarningLevel>Level3</WarningLevel> 1.63 + <Optimization>Disabled</Optimization> 1.64 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.65 + <DisableSpecificWarnings>4996</DisableSpecificWarnings> 1.66 + </ClCompile> 1.67 + <Link> 1.68 + <SubSystem>Windows</SubSystem> 1.69 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.70 + </Link> 1.71 + </ItemDefinitionGroup> 1.72 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.73 + <ClCompile> 1.74 + <WarningLevel>Level3</WarningLevel> 1.75 + <PrecompiledHeader> 1.76 + </PrecompiledHeader> 1.77 + <Optimization>MaxSpeed</Optimization> 1.78 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.79 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.80 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.81 + <DisableSpecificWarnings>4996</DisableSpecificWarnings> 1.82 + </ClCompile> 1.83 + <Link> 1.84 + <SubSystem>Windows</SubSystem> 1.85 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.86 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.87 + <OptimizeReferences>true</OptimizeReferences> 1.88 + </Link> 1.89 + </ItemDefinitionGroup> 1.90 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.91 + <ImportGroup Label="ExtensionTargets"> 1.92 + </ImportGroup> 1.93 +</Project> 1.94 \ No newline at end of file