9
3

system-dll.vcxproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>{419402D4-F990-4B05-A459-655E2DC33DC2}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>systemdll</RootNamespace>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  20. <ConfigurationType>DynamicLibrary</ConfigurationType>
  21. <UseDebugLibraries>true</UseDebugLibraries>
  22. <PlatformToolset>v141</PlatformToolset>
  23. <CharacterSet>Unicode</CharacterSet>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  26. <ConfigurationType>DynamicLibrary</ConfigurationType>
  27. <UseDebugLibraries>false</UseDebugLibraries>
  28. <PlatformToolset>v141</PlatformToolset>
  29. <WholeProgramOptimization>true</WholeProgramOptimization>
  30. <CharacterSet>Unicode</CharacterSet>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  33. <ImportGroup Label="ExtensionSettings">
  34. </ImportGroup>
  35. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. <Import Project="..\common.props" />
  38. </ImportGroup>
  39. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  40. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  41. <Import Project="..\common.props" />
  42. </ImportGroup>
  43. <PropertyGroup Label="UserMacros" />
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  45. <LinkIncremental>true</LinkIncremental>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  48. <LinkIncremental>false</LinkIncremental>
  49. </PropertyGroup>
  50. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  51. <ClCompile>
  52. <PrecompiledHeader>
  53. </PrecompiledHeader>
  54. <WarningLevel>Level3</WarningLevel>
  55. <Optimization>Disabled</Optimization>
  56. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;SYSTEMDLL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  57. <LanguageStandard>stdcpplatest</LanguageStandard>
  58. </ClCompile>
  59. <Link>
  60. <SubSystem>Windows</SubSystem>
  61. <GenerateDebugInformation>true</GenerateDebugInformation>
  62. </Link>
  63. <PostBuildEvent>
  64. <Command />
  65. </PostBuildEvent>
  66. </ItemDefinitionGroup>
  67. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  68. <ClCompile>
  69. <WarningLevel>Level3</WarningLevel>
  70. <PrecompiledHeader>
  71. </PrecompiledHeader>
  72. <Optimization>MaxSpeed</Optimization>
  73. <FunctionLevelLinking>true</FunctionLevelLinking>
  74. <IntrinsicFunctions>true</IntrinsicFunctions>
  75. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;SYSTEMDLL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  76. </ClCompile>
  77. <Link>
  78. <SubSystem>Windows</SubSystem>
  79. <GenerateDebugInformation>true</GenerateDebugInformation>
  80. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  81. <OptimizeReferences>true</OptimizeReferences>
  82. </Link>
  83. </ItemDefinitionGroup>
  84. <ItemGroup>
  85. <ClCompile Include="..\..\..\src\error_code.cpp" />
  86. </ItemGroup>
  87. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  88. <ImportGroup Label="ExtensionTargets">
  89. </ImportGroup>
  90. </Project>