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>{CD69B175-389E-4F8F-85DC-03C56A47CD1D}</ProjectGuid> 15 <RootNamespace>tut2</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 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 71 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 72 <FunctionLevelLinking>true</FunctionLevelLinking> 73 <PrecompiledHeader> 74 </PrecompiledHeader> 75 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 76 </ClCompile> 77 <Link> 78 <GenerateDebugInformation>true</GenerateDebugInformation> 79 <SubSystem>Console</SubSystem> 80 <OptimizeReferences>true</OptimizeReferences> 81 <EnableCOMDATFolding>true</EnableCOMDATFolding> 82 <TargetMachine>MachineX86</TargetMachine> 83 </Link> 84 <PostBuildEvent> 85 <Command>"$(TargetDir)\$(TargetName).exe" .</Command> 86 </PostBuildEvent> 87 </ItemDefinitionGroup> 88 <ItemGroup> 89 <ClCompile Include="..\..\..\example\tut2.cpp" /> 90 </ItemGroup> 91 <ItemGroup> 92 <ProjectReference Include="..\filesystem_dll\filesystem_dll.vcxproj"> 93 <Project>{ffd738f7-96f0-445c-81ea-551665ef53d1}</Project> 94 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 95 </ProjectReference> 96 <ProjectReference Include="..\system_dll\system_dll.vcxproj"> 97 <Project>{f94ccadd-a90b-480c-a304-c19d015d36b1}</Project> 98 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 99 </ProjectReference> 100 </ItemGroup> 101 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 102 <ImportGroup Label="ExtensionTargets"> 103 </ImportGroup> 104</Project>