server.vcxproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>{864CD288-050A-4C8B-9BEF-3048BD876C5B}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>sample</RootNamespace>
  17. <WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
  18. </PropertyGroup>
  19. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  21. <ConfigurationType>Application</ConfigurationType>
  22. <UseDebugLibraries>true</UseDebugLibraries>
  23. <CharacterSet>Unicode</CharacterSet>
  24. <PlatformToolset>v141</PlatformToolset>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  27. <ConfigurationType>Application</ConfigurationType>
  28. <UseDebugLibraries>false</UseDebugLibraries>
  29. <WholeProgramOptimization>true</WholeProgramOptimization>
  30. <CharacterSet>Unicode</CharacterSet>
  31. <PlatformToolset>v141</PlatformToolset>
  32. </PropertyGroup>
  33. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  34. <ImportGroup Label="ExtensionSettings">
  35. </ImportGroup>
  36. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  37. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  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. </ImportGroup>
  42. <PropertyGroup Label="UserMacros" />
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  44. <LinkIncremental>true</LinkIncremental>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  47. <LinkIncremental>false</LinkIncremental>
  48. </PropertyGroup>
  49. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  50. <ClCompile>
  51. <PrecompiledHeader>
  52. </PrecompiledHeader>
  53. <WarningLevel>Level3</WarningLevel>
  54. <Optimization>Disabled</Optimization>
  55. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  56. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  57. </ClCompile>
  58. <Link>
  59. <SubSystem>Console</SubSystem>
  60. <GenerateDebugInformation>true</GenerateDebugInformation>
  61. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  62. </Link>
  63. </ItemDefinitionGroup>
  64. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  65. <ClCompile>
  66. <WarningLevel>Level3</WarningLevel>
  67. <PrecompiledHeader>
  68. </PrecompiledHeader>
  69. <Optimization>MaxSpeed</Optimization>
  70. <FunctionLevelLinking>true</FunctionLevelLinking>
  71. <IntrinsicFunctions>true</IntrinsicFunctions>
  72. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  73. <AdditionalIncludeDirectories>..</AdditionalIncludeDirectories>
  74. </ClCompile>
  75. <Link>
  76. <SubSystem>Console</SubSystem>
  77. <GenerateDebugInformation>true</GenerateDebugInformation>
  78. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  79. <OptimizeReferences>true</OptimizeReferences>
  80. <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
  81. </Link>
  82. </ItemDefinitionGroup>
  83. <ItemGroup>
  84. <ClCompile Include="server.cc" />
  85. </ItemGroup>
  86. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  87. <ImportGroup Label="ExtensionTargets">
  88. </ImportGroup>
  89. </Project>