中间件底层,websocket

crypto.vcxproj 8.4KB

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>{FF6B33EA-FC04-45BD-9CD8-5D4D289A98C0}</ProjectGuid>
  24. <Keyword>Win32Proj</Keyword>
  25. <RootNamespace>crypto</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>StaticLibrary</ConfigurationType>
  31. <UseDebugLibraries>true</UseDebugLibraries>
  32. <PlatformToolset>v141</PlatformToolset>
  33. <CharacterSet>Unicode</CharacterSet>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  36. <ConfigurationType>StaticLibrary</ConfigurationType>
  37. <UseDebugLibraries>false</UseDebugLibraries>
  38. <PlatformToolset>v141</PlatformToolset>
  39. <WholeProgramOptimization>true</WholeProgramOptimization>
  40. <CharacterSet>MultiByte</CharacterSet>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  43. <ConfigurationType>StaticLibrary</ConfigurationType>
  44. <UseDebugLibraries>true</UseDebugLibraries>
  45. <PlatformToolset>v141</PlatformToolset>
  46. <CharacterSet>Unicode</CharacterSet>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  49. <ConfigurationType>StaticLibrary</ConfigurationType>
  50. <UseDebugLibraries>false</UseDebugLibraries>
  51. <PlatformToolset>v141</PlatformToolset>
  52. <WholeProgramOptimization>true</WholeProgramOptimization>
  53. <CharacterSet>Unicode</CharacterSet>
  54. </PropertyGroup>
  55. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  56. <ImportGroup Label="ExtensionSettings">
  57. </ImportGroup>
  58. <ImportGroup Label="Shared">
  59. </ImportGroup>
  60. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  70. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  71. </ImportGroup>
  72. <PropertyGroup Label="UserMacros" />
  73. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  74. <LinkIncremental>false</LinkIncremental>
  75. </PropertyGroup>
  76. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  77. <LinkIncremental>true</LinkIncremental>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  80. <LinkIncremental>true</LinkIncremental>
  81. </PropertyGroup>
  82. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  83. <LinkIncremental>false</LinkIncremental>
  84. </PropertyGroup>
  85. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  86. <ClCompile>
  87. <PrecompiledHeader>Use</PrecompiledHeader>
  88. <WarningLevel>Level3</WarningLevel>
  89. <Optimization>MaxSpeed</Optimization>
  90. <FunctionLevelLinking>true</FunctionLevelLinking>
  91. <IntrinsicFunctions>true</IntrinsicFunctions>
  92. <SDLCheck>true</SDLCheck>
  93. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  94. <ConformanceMode>true</ConformanceMode>
  95. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  96. <AdditionalIncludeDirectories>..\3rd\crypto\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  97. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  98. </ClCompile>
  99. <Link>
  100. <SubSystem>Windows</SubSystem>
  101. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  102. <OptimizeReferences>true</OptimizeReferences>
  103. <GenerateDebugInformation>true</GenerateDebugInformation>
  104. </Link>
  105. <Lib>
  106. <AdditionalLibraryDirectories>..\3rd\crypto\lib</AdditionalLibraryDirectories>
  107. </Lib>
  108. </ItemDefinitionGroup>
  109. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  110. <ClCompile>
  111. <PrecompiledHeader>Use</PrecompiledHeader>
  112. <WarningLevel>Level3</WarningLevel>
  113. <Optimization>Disabled</Optimization>
  114. <SDLCheck>true</SDLCheck>
  115. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  116. <ConformanceMode>true</ConformanceMode>
  117. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  118. </ClCompile>
  119. <Link>
  120. <SubSystem>Windows</SubSystem>
  121. <GenerateDebugInformation>true</GenerateDebugInformation>
  122. </Link>
  123. </ItemDefinitionGroup>
  124. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  125. <ClCompile>
  126. <PrecompiledHeader>Use</PrecompiledHeader>
  127. <WarningLevel>Level3</WarningLevel>
  128. <Optimization>Disabled</Optimization>
  129. <SDLCheck>true</SDLCheck>
  130. <PreprocessorDefinitions>_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  131. <ConformanceMode>true</ConformanceMode>
  132. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  133. </ClCompile>
  134. <Link>
  135. <SubSystem>Windows</SubSystem>
  136. <GenerateDebugInformation>true</GenerateDebugInformation>
  137. </Link>
  138. </ItemDefinitionGroup>
  139. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  140. <ClCompile>
  141. <PrecompiledHeader>Use</PrecompiledHeader>
  142. <WarningLevel>Level3</WarningLevel>
  143. <Optimization>MaxSpeed</Optimization>
  144. <FunctionLevelLinking>true</FunctionLevelLinking>
  145. <IntrinsicFunctions>true</IntrinsicFunctions>
  146. <SDLCheck>true</SDLCheck>
  147. <PreprocessorDefinitions>NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  148. <ConformanceMode>true</ConformanceMode>
  149. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  150. </ClCompile>
  151. <Link>
  152. <SubSystem>Windows</SubSystem>
  153. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  154. <OptimizeReferences>true</OptimizeReferences>
  155. <GenerateDebugInformation>true</GenerateDebugInformation>
  156. </Link>
  157. </ItemDefinitionGroup>
  158. <ItemGroup>
  159. <ClInclude Include="Crypto.h" />
  160. <ClInclude Include="framework.h" />
  161. <ClInclude Include="pch.h" />
  162. </ItemGroup>
  163. <ItemGroup>
  164. <ClCompile Include="crypto.cpp" />
  165. <ClCompile Include="pch.cpp">
  166. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  167. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  168. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
  169. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
  170. </ClCompile>
  171. </ItemGroup>
  172. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  173. <ImportGroup Label="ExtensionTargets">
  174. </ImportGroup>
  175. </Project>