server.vcxproj 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClCompile Include="simplesvr.cc" />
  23. </ItemGroup>
  24. <PropertyGroup Label="Globals">
  25. <ProjectGuid>{864CD288-050A-4C8B-9BEF-3048BD876C5B}</ProjectGuid>
  26. <Keyword>Win32Proj</Keyword>
  27. <RootNamespace>sample</RootNamespace>
  28. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  29. </PropertyGroup>
  30. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  32. <ConfigurationType>Application</ConfigurationType>
  33. <UseDebugLibraries>true</UseDebugLibraries>
  34. <CharacterSet>Unicode</CharacterSet>
  35. <PlatformToolset>v143</PlatformToolset>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  38. <ConfigurationType>Application</ConfigurationType>
  39. <UseDebugLibraries>true</UseDebugLibraries>
  40. <CharacterSet>Unicode</CharacterSet>
  41. <PlatformToolset>v143</PlatformToolset>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  44. <ConfigurationType>Application</ConfigurationType>
  45. <UseDebugLibraries>false</UseDebugLibraries>
  46. <WholeProgramOptimization>true</WholeProgramOptimization>
  47. <CharacterSet>Unicode</CharacterSet>
  48. <PlatformToolset>v143</PlatformToolset>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  51. <ConfigurationType>Application</ConfigurationType>
  52. <UseDebugLibraries>false</UseDebugLibraries>
  53. <WholeProgramOptimization>true</WholeProgramOptimization>
  54. <CharacterSet>Unicode</CharacterSet>
  55. <PlatformToolset>v143</PlatformToolset>
  56. </PropertyGroup>
  57. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  58. <ImportGroup Label="ExtensionSettings">
  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 Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  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)'=='Release|Win32'">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  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)'=='Debug|Win32'">
  74. <LinkIncremental>true</LinkIncremental>
  75. <IntDir>$(Configuration)\$(ProjectName)_obj\</IntDir>
  76. </PropertyGroup>
  77. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  78. <LinkIncremental>true</LinkIncremental>
  79. <IntDir>$(Platform)\$(Configuration)\$(ProjectName)_obj\</IntDir>
  80. </PropertyGroup>
  81. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  82. <LinkIncremental>false</LinkIncremental>
  83. <IntDir>$(Configuration)\$(ProjectName)_obj\</IntDir>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  86. <LinkIncremental>false</LinkIncremental>
  87. <IntDir>$(Platform)\$(Configuration)\$(ProjectName)_obj\</IntDir>
  88. </PropertyGroup>
  89. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  90. <ClCompile>
  91. <PrecompiledHeader>
  92. </PrecompiledHeader>
  93. <WarningLevel>Level3</WarningLevel>
  94. <Optimization>Disabled</Optimization>
  95. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  96. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  97. </ClCompile>
  98. <Link>
  99. <SubSystem>Console</SubSystem>
  100. <GenerateDebugInformation>true</GenerateDebugInformation>
  101. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  102. </Link>
  103. </ItemDefinitionGroup>
  104. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  105. <ClCompile>
  106. <PrecompiledHeader>
  107. </PrecompiledHeader>
  108. <WarningLevel>Level3</WarningLevel>
  109. <Optimization>Disabled</Optimization>
  110. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  111. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  112. </ClCompile>
  113. <Link>
  114. <SubSystem>Console</SubSystem>
  115. <GenerateDebugInformation>true</GenerateDebugInformation>
  116. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  117. </Link>
  118. </ItemDefinitionGroup>
  119. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  120. <ClCompile>
  121. <WarningLevel>Level3</WarningLevel>
  122. <PrecompiledHeader>
  123. </PrecompiledHeader>
  124. <Optimization>MaxSpeed</Optimization>
  125. <FunctionLevelLinking>true</FunctionLevelLinking>
  126. <IntrinsicFunctions>true</IntrinsicFunctions>
  127. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  128. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  129. </ClCompile>
  130. <Link>
  131. <SubSystem>Console</SubSystem>
  132. <GenerateDebugInformation>true</GenerateDebugInformation>
  133. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  134. <OptimizeReferences>true</OptimizeReferences>
  135. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  136. </Link>
  137. </ItemDefinitionGroup>
  138. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  139. <ClCompile>
  140. <WarningLevel>Level3</WarningLevel>
  141. <PrecompiledHeader>
  142. </PrecompiledHeader>
  143. <Optimization>MaxSpeed</Optimization>
  144. <FunctionLevelLinking>true</FunctionLevelLinking>
  145. <IntrinsicFunctions>true</IntrinsicFunctions>
  146. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  147. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  148. </ClCompile>
  149. <Link>
  150. <SubSystem>Console</SubSystem>
  151. <GenerateDebugInformation>true</GenerateDebugInformation>
  152. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  153. <OptimizeReferences>true</OptimizeReferences>
  154. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  155. </Link>
  156. </ItemDefinitionGroup>
  157. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  158. <ImportGroup Label="ExtensionTargets">
  159. </ImportGroup>
  160. </Project>