DEMO_DLL.vcxproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.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>{3B52ADAF-2763-48BC-9A57-7F36D3805D57}</ProjectGuid>
  15. <RootNamespace>TestDLL</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  20. <ConfigurationType>Application</ConfigurationType>
  21. <PlatformToolset>v120</PlatformToolset>
  22. <CharacterSet>Unicode</CharacterSet>
  23. <WholeProgramOptimization>true</WholeProgramOptimization>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  26. <ConfigurationType>Application</ConfigurationType>
  27. <PlatformToolset>v120</PlatformToolset>
  28. <CharacterSet>Unicode</CharacterSet>
  29. </PropertyGroup>
  30. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  31. <ImportGroup Label="ExtensionSettings">
  32. </ImportGroup>
  33. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  34. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  35. </ImportGroup>
  36. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  37. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  38. </ImportGroup>
  39. <PropertyGroup Label="UserMacros" />
  40. <PropertyGroup>
  41. <_ProjectFileVersion>12.0.21005.1</_ProjectFileVersion>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  44. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  45. <IntDir>$(Configuration)\</IntDir>
  46. <LinkIncremental>true</LinkIncremental>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  49. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  50. <IntDir>$(Configuration)\</IntDir>
  51. <LinkIncremental>false</LinkIncremental>
  52. </PropertyGroup>
  53. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  54. <ClCompile>
  55. <Optimization>Disabled</Optimization>
  56. <AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)\ANT_LIB\inc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  57. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  58. <MinimalRebuild>true</MinimalRebuild>
  59. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  60. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  61. <PrecompiledHeader />
  62. <WarningLevel>Level3</WarningLevel>
  63. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  64. </ClCompile>
  65. <Link>
  66. <GenerateDebugInformation>true</GenerateDebugInformation>
  67. <SubSystem>Console</SubSystem>
  68. <TargetMachine>MachineX86</TargetMachine>
  69. </Link>
  70. </ItemDefinitionGroup>
  71. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  72. <ClCompile>
  73. <Optimization>MaxSpeed</Optimization>
  74. <IntrinsicFunctions>true</IntrinsicFunctions>
  75. <AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)\ANT_LIB\inc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  76. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  77. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  78. <FunctionLevelLinking>true</FunctionLevelLinking>
  79. <PrecompiledHeader />
  80. <WarningLevel>Level3</WarningLevel>
  81. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  82. </ClCompile>
  83. <Link>
  84. <GenerateDebugInformation>true</GenerateDebugInformation>
  85. <SubSystem>Console</SubSystem>
  86. <OptimizeReferences>true</OptimizeReferences>
  87. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  88. <TargetMachine>MachineX86</TargetMachine>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <ItemGroup>
  92. <ClCompile Include="demo.cpp" />
  93. <ClCompile Include="libant.cpp" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <ClInclude Include="demo.h" />
  97. <ClInclude Include="libant.h" />
  98. <ClInclude Include="resource.h" />
  99. </ItemGroup>
  100. <ItemGroup>
  101. <ResourceCompile Include="DEMO_DLL.rc" />
  102. </ItemGroup>
  103. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  104. <ImportGroup Label="ExtensionTargets">
  105. </ImportGroup>
  106. </Project>