Util.vcxproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{DA0DB763-E423-475A-AE4A-114AFC2064E9}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>Log</RootNamespace>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  20. <ConfigurationType>StaticLibrary</ConfigurationType>
  21. <UseDebugLibraries>true</UseDebugLibraries>
  22. <CharacterSet>Unicode</CharacterSet>
  23. <UseOfMfc>Dynamic</UseOfMfc>
  24. <PlatformToolset>v141</PlatformToolset>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  27. <ConfigurationType>StaticLibrary</ConfigurationType>
  28. <UseDebugLibraries>false</UseDebugLibraries>
  29. <WholeProgramOptimization>true</WholeProgramOptimization>
  30. <CharacterSet>Unicode</CharacterSet>
  31. <UseOfMfc>Dynamic</UseOfMfc>
  32. <PlatformToolset>v141</PlatformToolset>
  33. </PropertyGroup>
  34. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  35. <ImportGroup Label="ExtensionSettings">
  36. </ImportGroup>
  37. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  38. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  39. </ImportGroup>
  40. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  41. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  42. </ImportGroup>
  43. <PropertyGroup Label="UserMacros" />
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  45. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  48. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  49. </PropertyGroup>
  50. <PropertyGroup Label="Vcpkg">
  51. <VcpkgEnabled>false</VcpkgEnabled>
  52. </PropertyGroup>
  53. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  54. <ClCompile>
  55. <PrecompiledHeader>Use</PrecompiledHeader>
  56. <WarningLevel>Level3</WarningLevel>
  57. <Optimization>Disabled</Optimization>
  58. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  59. </ClCompile>
  60. <Link>
  61. <SubSystem>Windows</SubSystem>
  62. <GenerateDebugInformation>true</GenerateDebugInformation>
  63. </Link>
  64. </ItemDefinitionGroup>
  65. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  66. <ClCompile>
  67. <WarningLevel>Level3</WarningLevel>
  68. <PrecompiledHeader>Use</PrecompiledHeader>
  69. <Optimization>MaxSpeed</Optimization>
  70. <FunctionLevelLinking>true</FunctionLevelLinking>
  71. <IntrinsicFunctions>true</IntrinsicFunctions>
  72. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  73. </ClCompile>
  74. <Link>
  75. <SubSystem>Windows</SubSystem>
  76. <GenerateDebugInformation>true</GenerateDebugInformation>
  77. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  78. <OptimizeReferences>true</OptimizeReferences>
  79. </Link>
  80. </ItemDefinitionGroup>
  81. <ItemGroup>
  82. <ClInclude Include="BaseUtility.h" />
  83. <ClInclude Include="Instance.h" />
  84. <ClInclude Include="Log.h" />
  85. <ClInclude Include="stdafx.h" />
  86. <ClInclude Include="targetver.h" />
  87. <ClInclude Include="typedef_struct.h" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <ClCompile Include="BaseUtility.cpp" />
  91. <ClCompile Include="Log.cpp" />
  92. <ClCompile Include="stdafx.cpp">
  93. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  94. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  95. </ClCompile>
  96. </ItemGroup>
  97. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  98. <ImportGroup Label="ExtensionTargets">
  99. </ImportGroup>
  100. </Project>