common.vcxproj (5424B)
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 <PropertyGroup Label="Globals"> 14 <ProjectGuid>{40A5DC51-53B0-4982-89AD-F9C2C85BB97A}</ProjectGuid> 15 <RootNamespace>common</RootNamespace> 16 </PropertyGroup> 17 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 19 <ConfigurationType>StaticLibrary</ConfigurationType> 20 <UseDebugLibraries>true</UseDebugLibraries> 21 <PlatformToolset>v110</PlatformToolset> 22 <CharacterSet>MultiByte</CharacterSet> 23 </PropertyGroup> 24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 25 <ConfigurationType>StaticLibrary</ConfigurationType> 26 <UseDebugLibraries>false</UseDebugLibraries> 27 <PlatformToolset>v110</PlatformToolset> 28 <WholeProgramOptimization>true</WholeProgramOptimization> 29 <CharacterSet>MultiByte</CharacterSet> 30 </PropertyGroup> 31 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 32 <ImportGroup Label="ExtensionSettings"> 33 </ImportGroup> 34 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 35 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 36 </ImportGroup> 37 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 38 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 39 </ImportGroup> 40 <PropertyGroup Label="UserMacros" /> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 42 <IncludePath>..\thirdparty\zlib-1.2.7;..\thirdparty\libpng-1.2.50;$(IncludePath)</IncludePath> 43 <OutDir>$(SolutionDir)_$(Configuration)\</OutDir> 44 <IntDir>_$(Configuration)\</IntDir> 45 </PropertyGroup> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 47 <IncludePath>..\thirdparty\zlib-1.2.7;..\thirdparty\libpng-1.2.50;$(IncludePath)</IncludePath> 48 <OutDir>$(SolutionDir)_$(Configuration)\</OutDir> 49 <IntDir>_$(Configuration)\</IntDir> 50 </PropertyGroup> 51 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 52 <ClCompile> 53 <WarningLevel>Level3</WarningLevel> 54 <Optimization>Disabled</Optimization> 55 <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> 56 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;USE_OPENGL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 57 <AdditionalIncludeDirectories>..\..\SDL-2.0.0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 58 </ClCompile> 59 <Link> 60 <GenerateDebugInformation>true</GenerateDebugInformation> 61 </Link> 62 </ItemDefinitionGroup> 63 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 64 <ClCompile> 65 <WarningLevel>Level3</WarningLevel> 66 <Optimization>MaxSpeed</Optimization> 67 <FunctionLevelLinking>true</FunctionLevelLinking> 68 <IntrinsicFunctions>true</IntrinsicFunctions> 69 <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> 70 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;USE_OPENGL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 71 <AdditionalIncludeDirectories>..\..\SDL-2.0.0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 72 </ClCompile> 73 <Link> 74 <GenerateDebugInformation>true</GenerateDebugInformation> 75 <EnableCOMDATFolding>true</EnableCOMDATFolding> 76 <OptimizeReferences>true</OptimizeReferences> 77 </Link> 78 </ItemDefinitionGroup> 79 <ItemGroup> 80 <ClInclude Include="app.h" /> 81 <ClInclude Include="dxapp.h" /> 82 <ClInclude Include="Effect.h" /> 83 <ClInclude Include="glcorearb.h" /> 84 <ClInclude Include="matrix.h" /> 85 <ClInclude Include="Model.h" /> 86 <ClInclude Include="opengl.h" /> 87 <ClInclude Include="Renderable.h" /> 88 <ClInclude Include="textgrid.h" /> 89 <ClInclude Include="texturefont.h" /> 90 <ClInclude Include="util.h" /> 91 </ItemGroup> 92 <ItemGroup> 93 <ClCompile Include="buffers.cc" /> 94 <ClCompile Include="Effect.cc" /> 95 <ClCompile Include="glapp.cc" /> 96 <ClCompile Include="io.cc" /> 97 <ClCompile Include="loadfile.cc" /> 98 <ClCompile Include="loadobj.cc" /> 99 <ClCompile Include="loadpng.cc" /> 100 <ClCompile Include="matrix.cc" /> 101 <ClCompile Include="Model.cc" /> 102 <ClCompile Include="savepng.cc" /> 103 <ClCompile Include="shaders.cc" /> 104 <ClCompile Include="simplexnoise.cc" /> 105 <ClCompile Include="textgrid.cc" /> 106 <ClCompile Include="texturefont.cc" /> 107 </ItemGroup> 108 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 109 <ImportGroup Label="ExtensionTargets"> 110 </ImportGroup> 111 </Project>