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>{4FF64FA7-6806-401D-865C-79DD064D4A9E}</ProjectGuid> 15 <RootNamespace>tut3</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 <MinimalRebuild>true</MinimalRebuild> 52 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 53 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 54 <PrecompiledHeader> 55 </PrecompiledHeader> 56 </ClCompile> 57 <Link> 58 <GenerateDebugInformation>true</GenerateDebugInformation> 59 <SubSystem>Console</SubSystem> 60 <TargetMachine>MachineX86</TargetMachine> 61 </Link> 62 <PostBuildEvent> 63 <Command>"$(TargetDir)\$(TargetName).exe" .</Command> 64 </PostBuildEvent> 65 </ItemDefinitionGroup> 66 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 67 <ClCompile> 68 <Optimization>MaxSpeed</Optimization> 69 <IntrinsicFunctions>true</IntrinsicFunctions> 70 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 71 <FunctionLevelLinking>true</FunctionLevelLinking> 72 <PrecompiledHeader> 73 </PrecompiledHeader> 74 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 75 </ClCompile> 76 <Link> 77 <GenerateDebugInformation>true</GenerateDebugInformation> 78 <SubSystem>Console</SubSystem> 79 <OptimizeReferences>true</OptimizeReferences> 80 <EnableCOMDATFolding>true</EnableCOMDATFolding> 81 <TargetMachine>MachineX86</TargetMachine> 82 </Link> 83 <PostBuildEvent> 84 <Command>"$(TargetDir)\$(TargetName).exe" .</Command> 85 </PostBuildEvent> 86 </ItemDefinitionGroup> 87 <ItemGroup> 88 <ClCompile Include="..\..\..\example\tut3.cpp" /> 89 </ItemGroup> 90 <ItemGroup> 91 <ProjectReference Include="..\filesystem_dll\filesystem_dll.vcxproj"> 92 <Project>{ffd738f7-96f0-445c-81ea-551665ef53d1}</Project> 93 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 94 </ProjectReference> 95 <ProjectReference Include="..\system_dll\system_dll.vcxproj"> 96 <Project>{f94ccadd-a90b-480c-a304-c19d015d36b1}</Project> 97 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 98 </ProjectReference> 99 </ItemGroup> 100 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 101 <ImportGroup Label="ExtensionTargets"> 102 </ImportGroup> 103</Project>