ENetCpp.vcxproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.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>{C9992B7C-313E-4C9F-A954-640D01EDFB58}</ProjectGuid>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  16. <Keyword>ManagedCProj</Keyword>
  17. <RootNamespace>ENet</RootNamespace>
  18. <ProjectName>ENetCpp</ProjectName>
  19. </PropertyGroup>
  20. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  22. <ConfigurationType>DynamicLibrary</ConfigurationType>
  23. <UseDebugLibraries>true</UseDebugLibraries>
  24. <PlatformToolset>v110</PlatformToolset>
  25. <CLRSupport>false</CLRSupport>
  26. <CharacterSet>Unicode</CharacterSet>
  27. </PropertyGroup>
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  29. <ConfigurationType>DynamicLibrary</ConfigurationType>
  30. <UseDebugLibraries>false</UseDebugLibraries>
  31. <PlatformToolset>v110</PlatformToolset>
  32. <CLRSupport>true</CLRSupport>
  33. <CharacterSet>Unicode</CharacterSet>
  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 Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  46. <LinkIncremental>true</LinkIncremental>
  47. <IncludePath>$(SolutionDir)\Platform\;$(IncludePath)</IncludePath>
  48. <OutDir>$(SolutionDir)\Bin\</OutDir>
  49. <IntDir>$(SolutionDir)\Temp\</IntDir>
  50. <TargetExt>.dll</TargetExt>
  51. <TargetName>$(ProjectName)</TargetName>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  54. <LinkIncremental>false</LinkIncremental>
  55. </PropertyGroup>
  56. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  57. <ClCompile>
  58. <WarningLevel>Level3</WarningLevel>
  59. <Optimization>Disabled</Optimization>
  60. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;ENET_DLL;ENET_BUILDING_LIB</PreprocessorDefinitions>
  61. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  62. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  63. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  64. <MinimalRebuild>false</MinimalRebuild>
  65. <ExceptionHandling>Sync</ExceptionHandling>
  66. <FunctionLevelLinking>false</FunctionLevelLinking>
  67. <BrowseInformation>true</BrowseInformation>
  68. <CallingConvention>Cdecl</CallingConvention>
  69. <CompileAsManaged>false</CompileAsManaged>
  70. <DisableSpecificWarnings>4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>
  71. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  72. </ClCompile>
  73. <Link>
  74. <GenerateDebugInformation>true</GenerateDebugInformation>
  75. <AdditionalDependencies>wsock32.lib;Ws2_32.lib;Winmm.lib</AdditionalDependencies>
  76. <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  77. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  78. <CLRSupportLastError>Enabled</CLRSupportLastError>
  79. </Link>
  80. <ProjectReference>
  81. <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
  82. </ProjectReference>
  83. </ItemDefinitionGroup>
  84. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  85. <ClCompile>
  86. <WarningLevel>Level3</WarningLevel>
  87. <PreprocessorDefinitions>WIN32;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  88. <PrecompiledHeader>Use</PrecompiledHeader>
  89. </ClCompile>
  90. <Link>
  91. <GenerateDebugInformation>true</GenerateDebugInformation>
  92. <AdditionalDependencies />
  93. </Link>
  94. </ItemDefinitionGroup>
  95. <ItemGroup>
  96. <ClCompile Include="callbacks.cc" />
  97. <ClCompile Include="compress.cc" />
  98. <ClCompile Include="host.cc" />
  99. <ClCompile Include="list.cc" />
  100. <ClCompile Include="packet.cc" />
  101. <ClCompile Include="peer.cc" />
  102. <ClCompile Include="protocol.cc" />
  103. <ClCompile Include="unix.cc" />
  104. <ClCompile Include="win32.cc" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ClInclude Include="ENet\callbacks.h" />
  108. <ClInclude Include="ENet\enet.h" />
  109. <ClInclude Include="ENet\list.h" />
  110. <ClInclude Include="ENet\protocol.h" />
  111. <ClInclude Include="ENet\time.h" />
  112. <ClInclude Include="ENet\types.h" />
  113. <ClInclude Include="ENet\unix.h" />
  114. <ClInclude Include="ENet\utility.h" />
  115. <ClInclude Include="ENet\win32.h" />
  116. </ItemGroup>
  117. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  118. <ImportGroup Label="ExtensionTargets">
  119. </ImportGroup>
  120. </Project>