Atlas - Directory.Build.props

Home / ext / SDL / VisualC / examples Lines: 1 | Size: 8998 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" 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 <ProjectConfiguration Include="Debug|x64"> 13 <Configuration>Debug</Configuration> 14 <Platform>x64</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <VCProjectVersion>15.0</VCProjectVersion> 23 <Keyword>Win32Proj</Keyword> 24 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 25 </PropertyGroup> 26 <PropertyGroup> 27 <PreferredToolArchitecture>x64</PreferredToolArchitecture> 28 </PropertyGroup> 29 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 30 <ConfigurationType>Application</ConfigurationType> 31 <UseDebugLibraries>true</UseDebugLibraries> 32 <PlatformToolset>v143</PlatformToolset> 33 <CharacterSet>Unicode</CharacterSet> 34 </PropertyGroup> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 36 <ConfigurationType>Application</ConfigurationType> 37 <UseDebugLibraries>false</UseDebugLibraries> 38 <PlatformToolset>v143</PlatformToolset> 39 <WholeProgramOptimization>true</WholeProgramOptimization> 40 <CharacterSet>Unicode</CharacterSet> 41 </PropertyGroup> 42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 43 <ConfigurationType>Application</ConfigurationType> 44 <UseDebugLibraries>true</UseDebugLibraries> 45 <PlatformToolset>v143</PlatformToolset> 46 <CharacterSet>Unicode</CharacterSet> 47 </PropertyGroup> 48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 49 <ConfigurationType>Application</ConfigurationType> 50 <UseDebugLibraries>false</UseDebugLibraries> 51 <PlatformToolset>v143</PlatformToolset> 52 <WholeProgramOptimization>true</WholeProgramOptimization> 53 <CharacterSet>Unicode</CharacterSet> 54 </PropertyGroup> 55 <ImportGroup Label="ExtensionSettings"> 56 </ImportGroup> 57 <ImportGroup Label="Shared"> 58 </ImportGroup> 59 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 60 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 61 </ImportGroup> 62 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 63 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 64 </ImportGroup> 65 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 66 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 67 </ImportGroup> 68 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 69 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 70 </ImportGroup> 71 <PropertyGroup Label="UserMacros" /> 72 <PropertyGroup> 73 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> 74 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Platform)\$(Configuration)\</IntDir> 75 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> 76 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\</IntDir> 77 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> 78 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Platform)\$(Configuration)\</IntDir> 79 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> 80 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\</IntDir> 81 </PropertyGroup> 82 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 83 <LinkIncremental>true</LinkIncremental> 84 </PropertyGroup> 85 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 86 <LinkIncremental>true</LinkIncremental> 87 </PropertyGroup> 88 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 89 <LinkIncremental>false</LinkIncremental> 90 </PropertyGroup> 91 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 92 <LinkIncremental>false</LinkIncremental> 93 </PropertyGroup> 94 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 95 <ClCompile> 96 <PrecompiledHeader>NotUsing</PrecompiledHeader> 97 <WarningLevel>Level3</WarningLevel> 98 <Optimization>Disabled</Optimization> 99 <SDLCheck>true</SDLCheck> 100 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 101 <ConformanceMode>true</ConformanceMode> 102 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> 103 </ClCompile> 104 <Link> 105 <SubSystem>Console</SubSystem> 106 <GenerateDebugInformation>true</GenerateDebugInformation> 107 </Link> 108 </ItemDefinitionGroup> 109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 110 <ClCompile> 111 <PrecompiledHeader>NotUsing</PrecompiledHeader> 112 <WarningLevel>Level3</WarningLevel> 113 <Optimization>Disabled</Optimization> 114 <SDLCheck>true</SDLCheck> 115 <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 116 <ConformanceMode>true</ConformanceMode> 117 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> 118 </ClCompile> 119 <Link> 120 <SubSystem>Console</SubSystem> 121 <GenerateDebugInformation>true</GenerateDebugInformation> 122 </Link> 123 </ItemDefinitionGroup> 124 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 125 <ClCompile> 126 <PrecompiledHeader>NotUsing</PrecompiledHeader> 127 <WarningLevel>Level3</WarningLevel> 128 <Optimization>MaxSpeed</Optimization> 129 <FunctionLevelLinking>true</FunctionLevelLinking> 130 <IntrinsicFunctions>true</IntrinsicFunctions> 131 <SDLCheck>true</SDLCheck> 132 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 133 <ConformanceMode>true</ConformanceMode> 134 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> 135 </ClCompile> 136 <Link> 137 <SubSystem>Console</SubSystem> 138 <EnableCOMDATFolding>true</EnableCOMDATFolding> 139 <OptimizeReferences>true</OptimizeReferences> 140 <GenerateDebugInformation>true</GenerateDebugInformation> 141 </Link> 142 </ItemDefinitionGroup> 143 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 144 <ClCompile> 145 <PrecompiledHeader>NotUsing</PrecompiledHeader> 146 <WarningLevel>Level3</WarningLevel> 147 <Optimization>MaxSpeed</Optimization> 148 <FunctionLevelLinking>true</FunctionLevelLinking> 149 <IntrinsicFunctions>true</IntrinsicFunctions> 150 <SDLCheck>true</SDLCheck> 151 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 152 <ConformanceMode>true</ConformanceMode> 153 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> 154 </ClCompile> 155 <Link> 156 <SubSystem>Console</SubSystem> 157 <EnableCOMDATFolding>true</EnableCOMDATFolding> 158 <OptimizeReferences>true</OptimizeReferences> 159 <GenerateDebugInformation>true</GenerateDebugInformation> 160 </Link> 161 </ItemDefinitionGroup> 162 <ItemDefinitionGroup> 163 <ClCompile> 164 <AdditionalOptions>%(AdditionalOptions) /utf-8</AdditionalOptions> 165 <AdditionalIncludeDirectories>$(SolutionDir)\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 166 </ClCompile> 167 </ItemDefinitionGroup> 168 <ItemGroup> 169 <ProjectReference Include="$(SolutionDir)\SDL\SDL.vcxproj"> 170 <Project>{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}</Project> 171 <Private>false</Private> 172 <CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies> 173 <ReferenceOutputAssembly>true</ReferenceOutputAssembly> 174 </ProjectReference> 175 </ItemGroup> 176 <ImportGroup Label="ExtensionTargets"> 177 </ImportGroup> 178</Project>
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.