sgl

view sgl.vcxproj @ 27:25de96fb1526

compiles on windows
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 27 Jun 2011 12:31:09 +0300
parents 23a01d912cf8
children
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 <ClCompile Include="src\wsys_w32.c" />
22 </ItemGroup>
23 <ItemGroup>
24 <ClInclude Include="src\config.h" />
25 <ClInclude Include="src\log.h" />
26 <ClInclude Include="src\wsys.h" />
27 </ItemGroup>
28 <PropertyGroup Label="Globals">
29 <ProjectGuid>{5DA1BC2D-9C03-425E-BE3A-AAF75437045B}</ProjectGuid>
30 <Keyword>Win32Proj</Keyword>
31 <RootNamespace>sgl</RootNamespace>
32 </PropertyGroup>
33 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
35 <ConfigurationType>StaticLibrary</ConfigurationType>
36 <UseDebugLibraries>true</UseDebugLibraries>
37 <CharacterSet>Unicode</CharacterSet>
38 </PropertyGroup>
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <ConfigurationType>StaticLibrary</ConfigurationType>
41 <UseDebugLibraries>false</UseDebugLibraries>
42 <WholeProgramOptimization>true</WholeProgramOptimization>
43 <CharacterSet>Unicode</CharacterSet>
44 </PropertyGroup>
45 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
46 <ImportGroup Label="ExtensionSettings">
47 </ImportGroup>
48 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
49 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
50 </ImportGroup>
51 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
52 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
53 </ImportGroup>
54 <PropertyGroup Label="UserMacros" />
55 <PropertyGroup />
56 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
57 <ClCompile>
58 <PrecompiledHeader>
59 </PrecompiledHeader>
60 <WarningLevel>Level3</WarningLevel>
61 <Optimization>Disabled</Optimization>
62 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
63 <DisableSpecificWarnings>4996</DisableSpecificWarnings>
64 <AdditionalIncludeDirectories>include</AdditionalIncludeDirectories>
65 </ClCompile>
66 <Link>
67 <SubSystem>Windows</SubSystem>
68 <GenerateDebugInformation>true</GenerateDebugInformation>
69 </Link>
70 </ItemDefinitionGroup>
71 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
72 <ClCompile>
73 <WarningLevel>Level3</WarningLevel>
74 <PrecompiledHeader>
75 </PrecompiledHeader>
76 <Optimization>MaxSpeed</Optimization>
77 <FunctionLevelLinking>true</FunctionLevelLinking>
78 <IntrinsicFunctions>true</IntrinsicFunctions>
79 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
80 <DisableSpecificWarnings>4996</DisableSpecificWarnings>
81 <AdditionalIncludeDirectories>include</AdditionalIncludeDirectories>
82 </ClCompile>
83 <Link>
84 <SubSystem>Windows</SubSystem>
85 <GenerateDebugInformation>true</GenerateDebugInformation>
86 <EnableCOMDATFolding>true</EnableCOMDATFolding>
87 <OptimizeReferences>true</OptimizeReferences>
88 </Link>
89 </ItemDefinitionGroup>
90 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
91 <ImportGroup Label="ExtensionTargets">
92 </ImportGroup>
93 </Project>