Advertisement
Guest User

minimal_sample.vcxproj

a guest
Mar 18th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.29 KB | None | 0 0
  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.   </ItemGroup>
  9.   <PropertyGroup Label="Globals">
  10.     <ProjectGuid>{13F7D5CD-F6BA-4731-96F6-416708D50E70}</ProjectGuid>
  11.     <RootNamespace>minimal_sample</RootNamespace>
  12.   </PropertyGroup>
  13.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  14.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  15.     <ConfigurationType>Application</ConfigurationType>
  16.     <UseDebugLibraries>true</UseDebugLibraries>
  17.     <CharacterSet>MultiByte</CharacterSet>
  18.   </PropertyGroup>
  19.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  20.   <ImportGroup Label="ExtensionSettings">
  21.   </ImportGroup>
  22.   <ImportGroup Label="PropertySheets">
  23.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  24.   </ImportGroup>
  25.  
  26.   <!-- Start of dynamic file inclusion code -->
  27.   <PropertyGroup>
  28.     <TxtFile Condition="'$(TxtFile)'==''">text_file.txt</TxtFile>
  29.   </PropertyGroup>
  30.  
  31.   <ItemGroup Condition="'$(TxtFile)'!='' and exists('$(TxtFile)')">
  32.     <None Include="$(TxtFile)"/>
  33.   </ItemGroup>
  34.   <!-- End of dynamic file inclusion code -->
  35.  
  36.   <PropertyGroup Label="UserMacros" />
  37.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  38.     <ClCompile>
  39.       <WarningLevel>Level3</WarningLevel>
  40.       <Optimization>Disabled</Optimization>
  41.     </ClCompile>
  42.     <Link>
  43.       <GenerateDebugInformation>true</GenerateDebugInformation>
  44.     </Link>
  45.   </ItemDefinitionGroup>
  46.  
  47.   <!-- Start of static file inclusion code -->
  48.   <ItemGroup>
  49.     <ClCompile Include="statically_included_header.h" />
  50.   </ItemGroup>
  51.   <ItemGroup>
  52.     <ClCompile Include="statically_included_impl.cpp" />
  53.   </ItemGroup>
  54.   <!-- End of static file inclusion code -->
  55.  
  56.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  57.   <ImportGroup Label="ExtensionTargets">
  58.   </ImportGroup>
  59. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement