SDL2test.vcxproj (7886B)
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>{E544B08A-C532-884E-A0BE-0F6F7F700067}</ProjectGuid> 15 <RootNamespace>SDL2test</RootNamespace> 16 <Keyword>Win32Proj</Keyword> 17 </PropertyGroup> 18 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 20 <ConfigurationType>StaticLibrary</ConfigurationType> 21 <UseDebugLibraries>true</UseDebugLibraries> 22 <CharacterSet>MultiByte</CharacterSet> 23 <PlatformToolset>v110</PlatformToolset> 24 </PropertyGroup> 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 26 <ConfigurationType>StaticLibrary</ConfigurationType> 27 <UseDebugLibraries>false</UseDebugLibraries> 28 <CharacterSet>MultiByte</CharacterSet> 29 <PlatformToolset>v110</PlatformToolset> 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 Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 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 <OutDir>Win32\Debug\</OutDir> 43 <IntDir>obj\Debug\</IntDir> 44 <TargetName>SDL2test</TargetName> 45 <TargetExt>.lib</TargetExt> 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 48 <OutDir>Win32\Release\</OutDir> 49 <IntDir>obj\Release\</IntDir> 50 <TargetName>SDL2test</TargetName> 51 <TargetExt>.lib</TargetExt> 52 </PropertyGroup> 53 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 54 <ClCompile> 55 <Optimization>Disabled</Optimization> 56 <AdditionalIncludeDirectories>..;..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 57 <PreprocessorDefinitions>USING_PREMAKE_CONFIG_H;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 58 <MinimalRebuild>true</MinimalRebuild> 59 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 60 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 61 <FunctionLevelLinking>true</FunctionLevelLinking> 62 <PrecompiledHeader></PrecompiledHeader> 63 <WarningLevel>Level3</WarningLevel> 64 <ExceptionHandling>false</ExceptionHandling> 65 <DebugInformationFormat>EditAndContinue</DebugInformationFormat> 66 <ProgramDataBaseFileName>$(OutDir)SDL2test.pdb</ProgramDataBaseFileName> 67 <CompileAs>CompileAsC</CompileAs> 68 </ClCompile> 69 <ResourceCompile> 70 <PreprocessorDefinitions>USING_PREMAKE_CONFIG_H;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 71 <AdditionalIncludeDirectories>..;..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 72 </ResourceCompile> 73 <Lib> 74 <OutputFile>$(OutDir)SDL2test.lib</OutputFile> 75 </Lib> 76 <Link> 77 <SubSystem>Windows</SubSystem> 78 <GenerateDebugInformation>true</GenerateDebugInformation> 79 </Link> 80 <PostBuildEvent> 81 <Command>if not exist ".\Win32\Debug" ( mkdir ".\Win32\Debug" )
copy ".\..\SDL2\Win32\Debug\SDL2.dll" ".\Win32\Debug\SDL2.dll"</Command> 82 </PostBuildEvent> 83 </ItemDefinitionGroup> 84 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 85 <ClCompile> 86 <Optimization>MaxSpeed</Optimization> 87 <AdditionalIncludeDirectories>..;..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 88 <PreprocessorDefinitions>USING_PREMAKE_CONFIG_H;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 89 <MinimalRebuild>false</MinimalRebuild> 90 <StringPooling>true</StringPooling> 91 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 92 <FunctionLevelLinking>true</FunctionLevelLinking> 93 <PrecompiledHeader></PrecompiledHeader> 94 <WarningLevel>Level3</WarningLevel> 95 <ExceptionHandling>false</ExceptionHandling> 96 <DebugInformationFormat></DebugInformationFormat> 97 <CompileAs>CompileAsC</CompileAs> 98 </ClCompile> 99 <ResourceCompile> 100 <PreprocessorDefinitions>USING_PREMAKE_CONFIG_H;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 101 <AdditionalIncludeDirectories>..;..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 102 </ResourceCompile> 103 <Lib> 104 <OutputFile>$(OutDir)SDL2test.lib</OutputFile> 105 </Lib> 106 <Link> 107 <SubSystem>Windows</SubSystem> 108 <GenerateDebugInformation>false</GenerateDebugInformation> 109 <EnableCOMDATFolding>true</EnableCOMDATFolding> 110 <OptimizeReferences>true</OptimizeReferences> 111 </Link> 112 <PostBuildEvent> 113 <Command>if not exist ".\Win32\Release" ( mkdir ".\Win32\Release" )
copy ".\..\SDL2\Win32\Release\SDL2.dll" ".\Win32\Release\SDL2.dll"</Command> 114 </PostBuildEvent> 115 </ItemDefinitionGroup> 116 <ItemGroup> 117 <ClCompile Include="..\..\..\..\src\test\SDL_test_assert.c"> 118 </ClCompile> 119 <ClCompile Include="..\..\..\..\src\test\SDL_test_common.c"> 120 </ClCompile> 121 <ClCompile Include="..\..\..\..\src\test\SDL_test_compare.c"> 122 </ClCompile> 123 <ClCompile Include="..\..\..\..\src\test\SDL_test_crc32.c"> 124 </ClCompile> 125 <ClCompile Include="..\..\..\..\src\test\SDL_test_font.c"> 126 </ClCompile> 127 <ClCompile Include="..\..\..\..\src\test\SDL_test_fuzzer.c"> 128 </ClCompile> 129 <ClCompile Include="..\..\..\..\src\test\SDL_test_harness.c"> 130 </ClCompile> 131 <ClCompile Include="..\..\..\..\src\test\SDL_test_imageBlit.c"> 132 </ClCompile> 133 <ClCompile Include="..\..\..\..\src\test\SDL_test_imageBlitBlend.c"> 134 </ClCompile> 135 <ClCompile Include="..\..\..\..\src\test\SDL_test_imageFace.c"> 136 </ClCompile> 137 <ClCompile Include="..\..\..\..\src\test\SDL_test_imagePrimitives.c"> 138 </ClCompile> 139 <ClCompile Include="..\..\..\..\src\test\SDL_test_imagePrimitivesBlend.c"> 140 </ClCompile> 141 <ClCompile Include="..\..\..\..\src\test\SDL_test_log.c"> 142 </ClCompile> 143 <ClCompile Include="..\..\..\..\src\test\SDL_test_md5.c"> 144 </ClCompile> 145 <ClCompile Include="..\..\..\..\src\test\SDL_test_random.c"> 146 </ClCompile> 147 </ItemGroup> 148 <ItemGroup> 149 <ProjectReference Include="..\SDL2main\SDL2main.vcxproj"> 150 <Project>{47B50335-DB5D-B948-B80C-E361ED5793F5}</Project> 151 </ProjectReference> 152 <ProjectReference Include="..\SDL2\SDL2.vcxproj"> 153 <Project>{7F1E020B-52F6-584E-B841-8B390015238B}</Project> 154 </ProjectReference> 155 </ItemGroup> 156 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 157 <ImportGroup Label="ExtensionTargets"> 158 </ImportGroup> 159</Project>