sgl

view 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 source
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.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 <ClCompile Include="src\cb.c" />
15 <ClCompile Include="src\log.c" />
16 <ClCompile Include="src\modules.c" />
17 <ClCompile Include="src\sgl.c" />
18 <ClCompile Include="src\wsys.c" />
19 <ClCompile Include="src\wsys_glut.c" />
20 <ClCompile Include="src\wsys_sdl.c" />
21 </ItemGroup>
22 <ItemGroup>
23 <ClInclude Include="src\config.h" />
24 <ClInclude Include="src\log.h" />
25 <ClInclude Include="src\wsys.h" />
26 </ItemGroup>
27 <PropertyGroup Label="Globals">
28 <ProjectGuid>{5DA1BC2D-9C03-425E-BE3A-AAF75437045B}</ProjectGuid>
29 <Keyword>Win32Proj</Keyword>
30 <RootNamespace>sgl</RootNamespace>
31 </PropertyGroup>
32 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
34 <ConfigurationType>StaticLibrary</ConfigurationType>
35 <UseDebugLibraries>true</UseDebugLibraries>
36 <CharacterSet>Unicode</CharacterSet>
37 </PropertyGroup>
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
39 <ConfigurationType>StaticLibrary</ConfigurationType>
40 <UseDebugLibraries>false</UseDebugLibraries>
41 <WholeProgramOptimization>true</WholeProgramOptimization>
42 <CharacterSet>Unicode</CharacterSet>
43 </PropertyGroup>
44 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
45 <ImportGroup Label="ExtensionSettings">
46 </ImportGroup>
47 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
49 </ImportGroup>
50 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
51 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52 </ImportGroup>
53 <PropertyGroup Label="UserMacros" />
54 <PropertyGroup />
55 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
56 <ClCompile>
57 <PrecompiledHeader>
58 </PrecompiledHeader>
59 <WarningLevel>Level3</WarningLevel>
60 <Optimization>Disabled</Optimization>
61 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
62 <DisableSpecificWarnings>4996</DisableSpecificWarnings>
63 </ClCompile>
64 <Link>
65 <SubSystem>Windows</SubSystem>
66 <GenerateDebugInformation>true</GenerateDebugInformation>
67 </Link>
68 </ItemDefinitionGroup>
69 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
70 <ClCompile>
71 <WarningLevel>Level3</WarningLevel>
72 <PrecompiledHeader>
73 </PrecompiledHeader>
74 <Optimization>MaxSpeed</Optimization>
75 <FunctionLevelLinking>true</FunctionLevelLinking>
76 <IntrinsicFunctions>true</IntrinsicFunctions>
77 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
78 <DisableSpecificWarnings>4996</DisableSpecificWarnings>
79 </ClCompile>
80 <Link>
81 <SubSystem>Windows</SubSystem>
82 <GenerateDebugInformation>true</GenerateDebugInformation>
83 <EnableCOMDATFolding>true</EnableCOMDATFolding>
84 <OptimizeReferences>true</OptimizeReferences>
85 </Link>
86 </ItemDefinitionGroup>
87 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
88 <ImportGroup Label="ExtensionTargets">
89 </ImportGroup>
90 </Project>