sgl
changeset 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 | 505915b0f3da |
children | 0eb6abc43ac6 |
files | sgl.sln sgl.vcxproj tests/simple/simple.vcxproj |
diffstat | 3 files changed, 198 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sgl.sln Mon Jun 27 10:49:01 2011 +0300 1.3 @@ -0,0 +1,26 @@ 1.4 + 1.5 +Microsoft Visual Studio Solution File, Format Version 11.00 1.6 +# Visual Studio 2010 1.7 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sgl", "sgl.vcxproj", "{5DA1BC2D-9C03-425E-BE3A-AAF75437045B}" 1.8 +EndProject 1.9 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple", "tests\simple\simple.vcxproj", "{440D0E79-9B82-4FD5-B8D6-D552938ED172}" 1.10 +EndProject 1.11 +Global 1.12 + GlobalSection(SolutionConfigurationPlatforms) = preSolution 1.13 + Debug|Win32 = Debug|Win32 1.14 + Release|Win32 = Release|Win32 1.15 + EndGlobalSection 1.16 + GlobalSection(ProjectConfigurationPlatforms) = postSolution 1.17 + {5DA1BC2D-9C03-425E-BE3A-AAF75437045B}.Debug|Win32.ActiveCfg = Debug|Win32 1.18 + {5DA1BC2D-9C03-425E-BE3A-AAF75437045B}.Debug|Win32.Build.0 = Debug|Win32 1.19 + {5DA1BC2D-9C03-425E-BE3A-AAF75437045B}.Release|Win32.ActiveCfg = Release|Win32 1.20 + {5DA1BC2D-9C03-425E-BE3A-AAF75437045B}.Release|Win32.Build.0 = Release|Win32 1.21 + {440D0E79-9B82-4FD5-B8D6-D552938ED172}.Debug|Win32.ActiveCfg = Debug|Win32 1.22 + {440D0E79-9B82-4FD5-B8D6-D552938ED172}.Debug|Win32.Build.0 = Debug|Win32 1.23 + {440D0E79-9B82-4FD5-B8D6-D552938ED172}.Release|Win32.ActiveCfg = Release|Win32 1.24 + {440D0E79-9B82-4FD5-B8D6-D552938ED172}.Release|Win32.Build.0 = Release|Win32 1.25 + EndGlobalSection 1.26 + GlobalSection(SolutionProperties) = preSolution 1.27 + HideSolutionNode = FALSE 1.28 + EndGlobalSection 1.29 +EndGlobal
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/sgl.vcxproj Mon Jun 27 10:49:01 2011 +0300 2.3 @@ -0,0 +1,90 @@ 2.4 +<?xml version="1.0" encoding="utf-8"?> 2.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2.6 + <ItemGroup Label="ProjectConfigurations"> 2.7 + <ProjectConfiguration Include="Debug|Win32"> 2.8 + <Configuration>Debug</Configuration> 2.9 + <Platform>Win32</Platform> 2.10 + </ProjectConfiguration> 2.11 + <ProjectConfiguration Include="Release|Win32"> 2.12 + <Configuration>Release</Configuration> 2.13 + <Platform>Win32</Platform> 2.14 + </ProjectConfiguration> 2.15 + </ItemGroup> 2.16 + <ItemGroup> 2.17 + <ClCompile Include="src\cb.c" /> 2.18 + <ClCompile Include="src\log.c" /> 2.19 + <ClCompile Include="src\modules.c" /> 2.20 + <ClCompile Include="src\sgl.c" /> 2.21 + <ClCompile Include="src\wsys.c" /> 2.22 + <ClCompile Include="src\wsys_glut.c" /> 2.23 + <ClCompile Include="src\wsys_sdl.c" /> 2.24 + </ItemGroup> 2.25 + <ItemGroup> 2.26 + <ClInclude Include="src\config.h" /> 2.27 + <ClInclude Include="src\log.h" /> 2.28 + <ClInclude Include="src\wsys.h" /> 2.29 + </ItemGroup> 2.30 + <PropertyGroup Label="Globals"> 2.31 + <ProjectGuid>{5DA1BC2D-9C03-425E-BE3A-AAF75437045B}</ProjectGuid> 2.32 + <Keyword>Win32Proj</Keyword> 2.33 + <RootNamespace>sgl</RootNamespace> 2.34 + </PropertyGroup> 2.35 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 2.36 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 2.37 + <ConfigurationType>StaticLibrary</ConfigurationType> 2.38 + <UseDebugLibraries>true</UseDebugLibraries> 2.39 + <CharacterSet>Unicode</CharacterSet> 2.40 + </PropertyGroup> 2.41 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 2.42 + <ConfigurationType>StaticLibrary</ConfigurationType> 2.43 + <UseDebugLibraries>false</UseDebugLibraries> 2.44 + <WholeProgramOptimization>true</WholeProgramOptimization> 2.45 + <CharacterSet>Unicode</CharacterSet> 2.46 + </PropertyGroup> 2.47 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 2.48 + <ImportGroup Label="ExtensionSettings"> 2.49 + </ImportGroup> 2.50 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 2.51 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 2.52 + </ImportGroup> 2.53 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 2.54 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 2.55 + </ImportGroup> 2.56 + <PropertyGroup Label="UserMacros" /> 2.57 + <PropertyGroup /> 2.58 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 2.59 + <ClCompile> 2.60 + <PrecompiledHeader> 2.61 + </PrecompiledHeader> 2.62 + <WarningLevel>Level3</WarningLevel> 2.63 + <Optimization>Disabled</Optimization> 2.64 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 2.65 + <DisableSpecificWarnings>4996</DisableSpecificWarnings> 2.66 + </ClCompile> 2.67 + <Link> 2.68 + <SubSystem>Windows</SubSystem> 2.69 + <GenerateDebugInformation>true</GenerateDebugInformation> 2.70 + </Link> 2.71 + </ItemDefinitionGroup> 2.72 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 2.73 + <ClCompile> 2.74 + <WarningLevel>Level3</WarningLevel> 2.75 + <PrecompiledHeader> 2.76 + </PrecompiledHeader> 2.77 + <Optimization>MaxSpeed</Optimization> 2.78 + <FunctionLevelLinking>true</FunctionLevelLinking> 2.79 + <IntrinsicFunctions>true</IntrinsicFunctions> 2.80 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 2.81 + <DisableSpecificWarnings>4996</DisableSpecificWarnings> 2.82 + </ClCompile> 2.83 + <Link> 2.84 + <SubSystem>Windows</SubSystem> 2.85 + <GenerateDebugInformation>true</GenerateDebugInformation> 2.86 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 2.87 + <OptimizeReferences>true</OptimizeReferences> 2.88 + </Link> 2.89 + </ItemDefinitionGroup> 2.90 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 2.91 + <ImportGroup Label="ExtensionTargets"> 2.92 + </ImportGroup> 2.93 +</Project> 2.94 \ No newline at end of file
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/tests/simple/simple.vcxproj Mon Jun 27 10:49:01 2011 +0300 3.3 @@ -0,0 +1,82 @@ 3.4 +<?xml version="1.0" encoding="utf-8"?> 3.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3.6 + <ItemGroup Label="ProjectConfigurations"> 3.7 + <ProjectConfiguration Include="Debug|Win32"> 3.8 + <Configuration>Debug</Configuration> 3.9 + <Platform>Win32</Platform> 3.10 + </ProjectConfiguration> 3.11 + <ProjectConfiguration Include="Release|Win32"> 3.12 + <Configuration>Release</Configuration> 3.13 + <Platform>Win32</Platform> 3.14 + </ProjectConfiguration> 3.15 + </ItemGroup> 3.16 + <PropertyGroup Label="Globals"> 3.17 + <ProjectGuid>{440D0E79-9B82-4FD5-B8D6-D552938ED172}</ProjectGuid> 3.18 + <Keyword>Win32Proj</Keyword> 3.19 + <RootNamespace>simple</RootNamespace> 3.20 + </PropertyGroup> 3.21 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 3.22 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 3.23 + <ConfigurationType>Application</ConfigurationType> 3.24 + <UseDebugLibraries>true</UseDebugLibraries> 3.25 + <CharacterSet>Unicode</CharacterSet> 3.26 + </PropertyGroup> 3.27 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 3.28 + <ConfigurationType>Application</ConfigurationType> 3.29 + <UseDebugLibraries>false</UseDebugLibraries> 3.30 + <WholeProgramOptimization>true</WholeProgramOptimization> 3.31 + <CharacterSet>Unicode</CharacterSet> 3.32 + </PropertyGroup> 3.33 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 3.34 + <ImportGroup Label="ExtensionSettings"> 3.35 + </ImportGroup> 3.36 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 3.37 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 3.38 + </ImportGroup> 3.39 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 3.40 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 3.41 + </ImportGroup> 3.42 + <PropertyGroup Label="UserMacros" /> 3.43 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 3.44 + <LinkIncremental>true</LinkIncremental> 3.45 + </PropertyGroup> 3.46 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 3.47 + <LinkIncremental>false</LinkIncremental> 3.48 + </PropertyGroup> 3.49 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 3.50 + <ClCompile> 3.51 + <PrecompiledHeader> 3.52 + </PrecompiledHeader> 3.53 + <WarningLevel>Level3</WarningLevel> 3.54 + <Optimization>Disabled</Optimization> 3.55 + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 3.56 + </ClCompile> 3.57 + <Link> 3.58 + <SubSystem>Console</SubSystem> 3.59 + <GenerateDebugInformation>true</GenerateDebugInformation> 3.60 + </Link> 3.61 + </ItemDefinitionGroup> 3.62 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 3.63 + <ClCompile> 3.64 + <WarningLevel>Level3</WarningLevel> 3.65 + <PrecompiledHeader> 3.66 + </PrecompiledHeader> 3.67 + <Optimization>MaxSpeed</Optimization> 3.68 + <FunctionLevelLinking>true</FunctionLevelLinking> 3.69 + <IntrinsicFunctions>true</IntrinsicFunctions> 3.70 + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 3.71 + </ClCompile> 3.72 + <Link> 3.73 + <SubSystem>Console</SubSystem> 3.74 + <GenerateDebugInformation>true</GenerateDebugInformation> 3.75 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 3.76 + <OptimizeReferences>true</OptimizeReferences> 3.77 + </Link> 3.78 + </ItemDefinitionGroup> 3.79 + <ItemGroup> 3.80 + <ClCompile Include="simple.c" /> 3.81 + </ItemGroup> 3.82 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 3.83 + <ImportGroup Label="ExtensionTargets"> 3.84 + </ImportGroup> 3.85 +</Project> 3.86 \ No newline at end of file