ENet.vcxproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. <PropertyGroup Label="Globals">
  22. <ProjectGuid>{C9992B7C-313E-4C9F-A954-640D01EDFB58}</ProjectGuid>
  23. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  24. <Keyword>ManagedCProj</Keyword>
  25. <RootNamespace>ENet</RootNamespace>
  26. <ProjectName>ENet</ProjectName>
  27. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  28. </PropertyGroup>
  29. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  31. <ConfigurationType>DynamicLibrary</ConfigurationType>
  32. <UseDebugLibraries>true</UseDebugLibraries>
  33. <PlatformToolset>v141_xp</PlatformToolset>
  34. <CLRSupport>false</CLRSupport>
  35. <CharacterSet>Unicode</CharacterSet>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  38. <ConfigurationType>DynamicLibrary</ConfigurationType>
  39. <UseDebugLibraries>true</UseDebugLibraries>
  40. <PlatformToolset>v141_xp</PlatformToolset>
  41. <CLRSupport>false</CLRSupport>
  42. <CharacterSet>Unicode</CharacterSet>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  45. <ConfigurationType>DynamicLibrary</ConfigurationType>
  46. <UseDebugLibraries>false</UseDebugLibraries>
  47. <PlatformToolset>v141</PlatformToolset>
  48. <CLRSupport>false</CLRSupport>
  49. <CharacterSet>Unicode</CharacterSet>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  52. <ConfigurationType>DynamicLibrary</ConfigurationType>
  53. <UseDebugLibraries>false</UseDebugLibraries>
  54. <PlatformToolset>v141</PlatformToolset>
  55. <CLRSupport>false</CLRSupport>
  56. <CharacterSet>Unicode</CharacterSet>
  57. </PropertyGroup>
  58. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  59. <ImportGroup Label="ExtensionSettings">
  60. </ImportGroup>
  61. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  62. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  63. </ImportGroup>
  64. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  65. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  66. </ImportGroup>
  67. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  68. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  69. </ImportGroup>
  70. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  71. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  72. </ImportGroup>
  73. <PropertyGroup Label="UserMacros" />
  74. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  75. <LinkIncremental>true</LinkIncremental>
  76. <IncludePath>$(SolutionDir)\Platform\;$(IncludePath)</IncludePath>
  77. <OutDir>$(SolutionDir)..\Bin\</OutDir>
  78. <IntDir>$(SolutionDir)..\Temp\</IntDir>
  79. <TargetExt>.dll</TargetExt>
  80. <TargetName>$(ProjectName)</TargetName>
  81. </PropertyGroup>
  82. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  83. <TargetExt>.dll</TargetExt>
  84. <TargetName>$(ProjectName)</TargetName>
  85. <LinkIncremental>true</LinkIncremental>
  86. <IncludePath>$(SolutionDir)\Platform\;$(IncludePath)</IncludePath>
  87. <OutDir>$(SolutionDir)..\Bin\</OutDir>
  88. <IntDir>$(SolutionDir)..\Temp\</IntDir>
  89. </PropertyGroup>
  90. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  91. <LinkIncremental>false</LinkIncremental>
  92. <OutDir>$(SolutionDir)\Bin\Release\</OutDir>
  93. <IntDir>$(SolutionDir)\Temp\Release\</IntDir>
  94. </PropertyGroup>
  95. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  96. <LinkIncremental>false</LinkIncremental>
  97. </PropertyGroup>
  98. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  99. <ClCompile>
  100. <WarningLevel>Level3</WarningLevel>
  101. <Optimization>Full</Optimization>
  102. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;ENET_DLL;ENET_BUILDING_LIB</PreprocessorDefinitions>
  103. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  104. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  105. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  106. <MinimalRebuild>false</MinimalRebuild>
  107. <ExceptionHandling>Sync</ExceptionHandling>
  108. <FunctionLevelLinking>false</FunctionLevelLinking>
  109. <BrowseInformation>true</BrowseInformation>
  110. <CallingConvention>Cdecl</CallingConvention>
  111. <CompileAsManaged>false</CompileAsManaged>
  112. <DisableSpecificWarnings>4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>
  113. <DebugInformationFormat>None</DebugInformationFormat>
  114. </ClCompile>
  115. <Link>
  116. <GenerateDebugInformation>No</GenerateDebugInformation>
  117. <AdditionalDependencies>wsock32.lib;Ws2_32.lib;Winmm.lib</AdditionalDependencies>
  118. <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  119. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  120. <CLRSupportLastError>Enabled</CLRSupportLastError>
  121. </Link>
  122. <ProjectReference>
  123. <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
  124. </ProjectReference>
  125. <Bscmake>
  126. <PreserveSbr>true</PreserveSbr>
  127. </Bscmake>
  128. </ItemDefinitionGroup>
  129. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  130. <ClCompile>
  131. <WarningLevel>Level3</WarningLevel>
  132. <Optimization>Full</Optimization>
  133. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;ENET_DLL;ENET_BUILDING_LIB</PreprocessorDefinitions>
  134. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  135. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  136. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  137. <MinimalRebuild>false</MinimalRebuild>
  138. <ExceptionHandling>Sync</ExceptionHandling>
  139. <FunctionLevelLinking>false</FunctionLevelLinking>
  140. <BrowseInformation>true</BrowseInformation>
  141. <CallingConvention>Cdecl</CallingConvention>
  142. <CompileAsManaged>false</CompileAsManaged>
  143. <DisableSpecificWarnings>4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>
  144. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  145. <WholeProgramOptimization>true</WholeProgramOptimization>
  146. </ClCompile>
  147. <Link>
  148. <GenerateDebugInformation>true</GenerateDebugInformation>
  149. <AdditionalDependencies>wsock32.lib;Ws2_32.lib;Winmm.lib</AdditionalDependencies>
  150. <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  151. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  152. <CLRSupportLastError>Enabled</CLRSupportLastError>
  153. </Link>
  154. <ProjectReference>
  155. <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
  156. </ProjectReference>
  157. <Bscmake>
  158. <PreserveSbr>true</PreserveSbr>
  159. </Bscmake>
  160. </ItemDefinitionGroup>
  161. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  162. <ClCompile>
  163. <WarningLevel>Level3</WarningLevel>
  164. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;ENET_DLL;ENET_BUILDING_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  165. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  166. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  167. <CompileAsManaged>false</CompileAsManaged>
  168. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  169. </ClCompile>
  170. <Link>
  171. <GenerateDebugInformation>false</GenerateDebugInformation>
  172. <AdditionalDependencies>wsock32.lib;Ws2_32.lib;Winmm.lib</AdditionalDependencies>
  173. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  174. <CLRSupportLastError>Enabled</CLRSupportLastError>
  175. <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
  176. </Link>
  177. </ItemDefinitionGroup>
  178. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  179. <ClCompile>
  180. <WarningLevel>Level3</WarningLevel>
  181. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;ENET_DLL;ENET_BUILDING_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  182. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  183. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  184. <CompileAsManaged>false</CompileAsManaged>
  185. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  186. </ClCompile>
  187. <Link>
  188. <GenerateDebugInformation>false</GenerateDebugInformation>
  189. <AdditionalDependencies>wsock32.lib;Ws2_32.lib;Winmm.lib</AdditionalDependencies>
  190. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  191. <CLRSupportLastError>Enabled</CLRSupportLastError>
  192. <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
  193. <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
  194. </Link>
  195. </ItemDefinitionGroup>
  196. <ItemGroup>
  197. <ClCompile Include="callbacks.c" />
  198. <ClCompile Include="compress.c" />
  199. <ClCompile Include="host.c" />
  200. <ClCompile Include="list.c" />
  201. <ClCompile Include="packet.c" />
  202. <ClCompile Include="peer.c" />
  203. <ClCompile Include="protocol.c" />
  204. <ClCompile Include="unix.c" />
  205. <ClCompile Include="win32.c" />
  206. </ItemGroup>
  207. <ItemGroup>
  208. <ClInclude Include="enet\callbacks.h" />
  209. <ClInclude Include="enet\enet.h" />
  210. <ClInclude Include="enet\list.h" />
  211. <ClInclude Include="enet\protocol.h" />
  212. <ClInclude Include="enet\time.h" />
  213. <ClInclude Include="enet\types.h" />
  214. <ClInclude Include="enet\unix.h" />
  215. <ClInclude Include="enet\utility.h" />
  216. <ClInclude Include="enet\win32.h" />
  217. </ItemGroup>
  218. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  219. <ImportGroup Label="ExtensionTargets">
  220. </ImportGroup>
  221. </Project>