中间件底层,websocket

testClient.vcxproj 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <PropertyGroup Label="Globals">
  22. <VCProjectVersion>15.0</VCProjectVersion>
  23. <ProjectGuid>{8EF3D10B-6E99-4776-B9F6-85BC1030566A}</ProjectGuid>
  24. <Keyword>Win32Proj</Keyword>
  25. <RootNamespace>testClient</RootNamespace>
  26. <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  30. <ConfigurationType>Application</ConfigurationType>
  31. <UseDebugLibraries>true</UseDebugLibraries>
  32. <PlatformToolset>v141</PlatformToolset>
  33. <CharacterSet>MultiByte</CharacterSet>
  34. <UseOfMfc>Static</UseOfMfc>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  37. <ConfigurationType>Application</ConfigurationType>
  38. <UseDebugLibraries>false</UseDebugLibraries>
  39. <PlatformToolset>v141</PlatformToolset>
  40. <WholeProgramOptimization>true</WholeProgramOptimization>
  41. <CharacterSet>MultiByte</CharacterSet>
  42. <UseOfMfc>Static</UseOfMfc>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  45. <ConfigurationType>Application</ConfigurationType>
  46. <UseDebugLibraries>true</UseDebugLibraries>
  47. <PlatformToolset>v141</PlatformToolset>
  48. <CharacterSet>Unicode</CharacterSet>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  51. <ConfigurationType>Application</ConfigurationType>
  52. <UseDebugLibraries>false</UseDebugLibraries>
  53. <PlatformToolset>v141</PlatformToolset>
  54. <WholeProgramOptimization>true</WholeProgramOptimization>
  55. <CharacterSet>Unicode</CharacterSet>
  56. </PropertyGroup>
  57. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  58. <ImportGroup Label="ExtensionSettings">
  59. </ImportGroup>
  60. <ImportGroup Label="Shared">
  61. </ImportGroup>
  62. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  63. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  64. </ImportGroup>
  65. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  66. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  67. </ImportGroup>
  68. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  69. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  70. </ImportGroup>
  71. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  72. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  73. </ImportGroup>
  74. <PropertyGroup Label="UserMacros" />
  75. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  76. <LinkIncremental>false</LinkIncremental>
  77. </PropertyGroup>
  78. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  79. <LinkIncremental>true</LinkIncremental>
  80. </PropertyGroup>
  81. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  82. <LinkIncremental>true</LinkIncremental>
  83. </PropertyGroup>
  84. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  85. <LinkIncremental>false</LinkIncremental>
  86. </PropertyGroup>
  87. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  88. <ClCompile>
  89. <PrecompiledHeader>Create</PrecompiledHeader>
  90. <WarningLevel>Level3</WarningLevel>
  91. <Optimization>MaxSpeed</Optimization>
  92. <FunctionLevelLinking>true</FunctionLevelLinking>
  93. <IntrinsicFunctions>true</IntrinsicFunctions>
  94. <SDLCheck>true</SDLCheck>
  95. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  96. <ConformanceMode>true</ConformanceMode>
  97. <AdditionalIncludeDirectories>$(SolutionDir)wsClient;$(SolutionDir)Public\pdu;$(ProjectDir);</AdditionalIncludeDirectories>
  98. </ClCompile>
  99. <Link>
  100. <SubSystem>Console</SubSystem>
  101. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  102. <OptimizeReferences>true</OptimizeReferences>
  103. <GenerateDebugInformation>true</GenerateDebugInformation>
  104. <AdditionalLibraryDirectories>$(SolutionDir)$(Configuration)\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  105. <AdditionalDependencies>wsClient.lib</AdditionalDependencies>
  106. </Link>
  107. </ItemDefinitionGroup>
  108. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  109. <ClCompile>
  110. <PrecompiledHeader>Create</PrecompiledHeader>
  111. <WarningLevel>Level3</WarningLevel>
  112. <Optimization>Disabled</Optimization>
  113. <SDLCheck>true</SDLCheck>
  114. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  115. <ConformanceMode>true</ConformanceMode>
  116. <AdditionalIncludeDirectories>$(SolutionDir)wsClient;$(SolutionDir)Public\pdu;$(ProjectDir);</AdditionalIncludeDirectories>
  117. </ClCompile>
  118. <Link>
  119. <SubSystem>Console</SubSystem>
  120. <GenerateDebugInformation>true</GenerateDebugInformation>
  121. <AdditionalDependencies>wsClient.lib</AdditionalDependencies>
  122. <AdditionalLibraryDirectories>$(SolutionDir)$(Configuration)\</AdditionalLibraryDirectories>
  123. </Link>
  124. </ItemDefinitionGroup>
  125. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  126. <ClCompile>
  127. <PrecompiledHeader>
  128. </PrecompiledHeader>
  129. <WarningLevel>Level3</WarningLevel>
  130. <Optimization>Disabled</Optimization>
  131. <SDLCheck>true</SDLCheck>
  132. <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  133. <ConformanceMode>true</ConformanceMode>
  134. </ClCompile>
  135. <Link>
  136. <SubSystem>Console</SubSystem>
  137. <GenerateDebugInformation>true</GenerateDebugInformation>
  138. </Link>
  139. </ItemDefinitionGroup>
  140. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  141. <ClCompile>
  142. <PrecompiledHeader>
  143. </PrecompiledHeader>
  144. <WarningLevel>Level3</WarningLevel>
  145. <Optimization>MaxSpeed</Optimization>
  146. <FunctionLevelLinking>true</FunctionLevelLinking>
  147. <IntrinsicFunctions>true</IntrinsicFunctions>
  148. <SDLCheck>true</SDLCheck>
  149. <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  150. <ConformanceMode>true</ConformanceMode>
  151. </ClCompile>
  152. <Link>
  153. <SubSystem>Console</SubSystem>
  154. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  155. <OptimizeReferences>true</OptimizeReferences>
  156. <GenerateDebugInformation>true</GenerateDebugInformation>
  157. </Link>
  158. </ItemDefinitionGroup>
  159. <ItemGroup>
  160. <ClCompile Include="stdafx.cpp" />
  161. <ClCompile Include="testClient.cpp" />
  162. </ItemGroup>
  163. <ItemGroup>
  164. <ClInclude Include="framework.h" />
  165. <ClInclude Include="stdafx.h" />
  166. </ItemGroup>
  167. <ItemGroup>
  168. <ProjectReference Include="..\wsClient\wsClient.vcxproj">
  169. <Project>{8ba726cf-c486-4c30-a140-9e81df3422ab}</Project>
  170. </ProjectReference>
  171. </ItemGroup>
  172. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  173. <ImportGroup Label="ExtensionTargets">
  174. </ImportGroup>
  175. </Project>