1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="15.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>{256EA89A-E073-4CE8-B675-BE2FBC6B2691}</ProjectGuid> 15 <RootNamespace>tut4</RootNamespace> 16 <Keyword>Win32Proj</Keyword> 17 <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion> 18 </PropertyGroup> 19 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 20 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 21 <ConfigurationType>Application</ConfigurationType> 22 <CharacterSet>Unicode</CharacterSet> 23 <WholeProgramOptimization>true</WholeProgramOptimization> 24 <PlatformToolset>v141</PlatformToolset> 25 </PropertyGroup> 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 27 <ConfigurationType>Application</ConfigurationType> 28 <CharacterSet>Unicode</CharacterSet> 29 <PlatformToolset>v141</PlatformToolset> 30 </PropertyGroup> 31 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 32 <ImportGroup Label="ExtensionSettings"> 33 </ImportGroup> 34 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 35 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 36 <Import Project="..\common.props" /> 37 </ImportGroup> 38 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 39 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 40 <Import Project="..\common.props" /> 41 </ImportGroup> 42 <PropertyGroup Label="UserMacros" /> 43 <PropertyGroup> 44 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 45 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> 46 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> 47 </PropertyGroup> 48 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 49 <ClCompile> 50 <Optimization>Disabled</Optimization> 51 <AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 52 <MinimalRebuild>true</MinimalRebuild> 53 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 54 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 55 <PrecompiledHeader> 56 </PrecompiledHeader> 57 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 58 </ClCompile> 59 <Link> 60 <GenerateDebugInformation>true</GenerateDebugInformation> 61 <SubSystem>Console</SubSystem> 62 <TargetMachine>MachineX86</TargetMachine> 63 </Link> 64 <PostBuildEvent> 65 <Command>"$(TargetDir)\$(TargetName).exe" .</Command> 66 </PostBuildEvent> 67 </ItemDefinitionGroup> 68 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 69 <ClCompile> 70 <Optimization>MaxSpeed</Optimization> 71 <IntrinsicFunctions>true</IntrinsicFunctions> 72 <AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 73 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 74 <FunctionLevelLinking>true</FunctionLevelLinking> 75 <PrecompiledHeader> 76 </PrecompiledHeader> 77 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 78 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 79 </ClCompile> 80 <Link> 81 <GenerateDebugInformation>true</GenerateDebugInformation> 82 <SubSystem>Console</SubSystem> 83 <OptimizeReferences>true</OptimizeReferences> 84 <EnableCOMDATFolding>true</EnableCOMDATFolding> 85 <TargetMachine>MachineX86</TargetMachine> 86 </Link> 87 <PostBuildEvent> 88 <Command>"$(TargetDir)\$(TargetName).exe" .</Command> 89 </PostBuildEvent> 90 </ItemDefinitionGroup> 91 <ItemGroup> 92 <ClCompile Include="..\..\..\example\tut4.cpp" /> 93 </ItemGroup> 94 <ItemGroup> 95 <ProjectReference Include="..\filesystem_dll\filesystem_dll.vcxproj"> 96 <Project>{ffd738f7-96f0-445c-81ea-551665ef53d1}</Project> 97 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 98 </ProjectReference> 99 <ProjectReference Include="..\system_dll\system_dll.vcxproj"> 100 <Project>{f94ccadd-a90b-480c-a304-c19d015d36b1}</Project> 101 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 102 </ProjectReference> 103 </ItemGroup> 104 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 105 <ImportGroup Label="ExtensionTargets"> 106 </ImportGroup> 107</Project>