组件

NetLib.vcxproj 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>{2393D53B-07E9-4D90-9B10-0707E065C2D6}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>NetLib</RootNamespace>
  17. <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
  18. </PropertyGroup>
  19. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  21. <ConfigurationType>StaticLibrary</ConfigurationType>
  22. <UseDebugLibraries>true</UseDebugLibraries>
  23. <CharacterSet>MultiByte</CharacterSet>
  24. <UseOfMfc>Static</UseOfMfc>
  25. <PlatformToolset>v141</PlatformToolset>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  28. <ConfigurationType>StaticLibrary</ConfigurationType>
  29. <UseDebugLibraries>false</UseDebugLibraries>
  30. <WholeProgramOptimization>true</WholeProgramOptimization>
  31. <CharacterSet>MultiByte</CharacterSet>
  32. <UseOfMfc>Static</UseOfMfc>
  33. <PlatformToolset>v141</PlatformToolset>
  34. </PropertyGroup>
  35. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  36. <ImportGroup Label="ExtensionSettings">
  37. </ImportGroup>
  38. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  42. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  43. </ImportGroup>
  44. <PropertyGroup Label="UserMacros" />
  45. <PropertyGroup />
  46. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  47. <ClCompile>
  48. <PrecompiledHeader>Use</PrecompiledHeader>
  49. <WarningLevel>Level3</WarningLevel>
  50. <Optimization>Disabled</Optimization>
  51. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  52. </ClCompile>
  53. <Link>
  54. <SubSystem>Windows</SubSystem>
  55. <GenerateDebugInformation>true</GenerateDebugInformation>
  56. </Link>
  57. </ItemDefinitionGroup>
  58. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  59. <ClCompile>
  60. <WarningLevel>Level3</WarningLevel>
  61. <PrecompiledHeader>Use</PrecompiledHeader>
  62. <Optimization>MaxSpeed</Optimization>
  63. <FunctionLevelLinking>true</FunctionLevelLinking>
  64. <IntrinsicFunctions>true</IntrinsicFunctions>
  65. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  66. <LanguageStandard>stdcpp17</LanguageStandard>
  67. </ClCompile>
  68. <Link>
  69. <SubSystem>Windows</SubSystem>
  70. <GenerateDebugInformation>true</GenerateDebugInformation>
  71. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  72. <OptimizeReferences>true</OptimizeReferences>
  73. </Link>
  74. </ItemDefinitionGroup>
  75. <ItemGroup>
  76. <None Include="PDUFormat.ini" />
  77. <None Include="ReadMe.txt" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <ClInclude Include="..\Public\GlobalDef\TemplateTimer.h" />
  81. <ClInclude Include="ClientAssistant.h" />
  82. <ClInclude Include="ClientContainer.h" />
  83. <ClInclude Include="NetClient.h" />
  84. <ClInclude Include="NetCtrlInterface.h" />
  85. <ClInclude Include="NetLinkMain.h" />
  86. <ClInclude Include="NetRepInterface.h" />
  87. <ClInclude Include="NetServer.h" />
  88. <ClInclude Include="PduDataFormat.h" />
  89. <ClInclude Include="PduDataFormatOne.h" />
  90. <ClInclude Include="PduEntity.h" />
  91. <ClInclude Include="PduEntityHead.h" />
  92. <ClInclude Include="PduEventHost.h" />
  93. <ClInclude Include="PduLinkInc.h" />
  94. <ClInclude Include="PduMain.h" />
  95. <ClInclude Include="PduSocket.h" />
  96. <ClInclude Include="PduSocketMonitor.h" />
  97. <ClInclude Include="PduSocketServer.h" />
  98. <ClInclude Include="PduSocketVector.h" />
  99. <ClInclude Include="SocketBase.h" />
  100. <ClInclude Include="stdafx.h" />
  101. <ClInclude Include="targetver.h" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <ClCompile Include="ClientAssistant.cpp" />
  105. <ClCompile Include="ClientContainer.cpp" />
  106. <ClCompile Include="NetClient.cpp" />
  107. <ClCompile Include="NetLinkMain.cpp" />
  108. <ClCompile Include="NetServer.cpp" />
  109. <ClCompile Include="PduDataFormat.cpp" />
  110. <ClCompile Include="PduDataFormatOne.cpp" />
  111. <ClCompile Include="PduEntity.cpp" />
  112. <ClCompile Include="PduEntityHead.cpp" />
  113. <ClCompile Include="PduEventHost.cpp" />
  114. <ClCompile Include="PduMain.cpp" />
  115. <ClCompile Include="PduSocket.cpp" />
  116. <ClCompile Include="PduSocketMonitor.cpp" />
  117. <ClCompile Include="PduSocketServer.cpp" />
  118. <ClCompile Include="PduSocketVector.cpp" />
  119. <ClCompile Include="SocketBase.cpp" />
  120. <ClCompile Include="stdafx.cpp">
  121. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  122. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  123. </ClCompile>
  124. </ItemGroup>
  125. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  126. <ImportGroup Label="ExtensionTargets">
  127. </ImportGroup>
  128. </Project>