libbox2d.vcxproj 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. <ItemGroup>
  14. <ClCompile Include="..\Collision\b2BroadPhase.cpp" />
  15. <ClCompile Include="..\Collision\b2CollideCircle.cpp" />
  16. <ClCompile Include="..\Collision\b2CollideEdge.cpp" />
  17. <ClCompile Include="..\Collision\b2CollidePolygon.cpp" />
  18. <ClCompile Include="..\Collision\b2Collision.cpp" />
  19. <ClCompile Include="..\Collision\b2Distance.cpp" />
  20. <ClCompile Include="..\Collision\b2DynamicTree.cpp" />
  21. <ClCompile Include="..\Collision\b2TimeOfImpact.cpp" />
  22. <ClCompile Include="..\Collision\Shapes\b2ChainShape.cpp" />
  23. <ClCompile Include="..\Collision\Shapes\b2CircleShape.cpp" />
  24. <ClCompile Include="..\Collision\Shapes\b2EdgeShape.cpp" />
  25. <ClCompile Include="..\Collision\Shapes\b2PolygonShape.cpp" />
  26. <ClCompile Include="..\Common\b2BlockAllocator.cpp" />
  27. <ClCompile Include="..\Common\b2Draw.cpp" />
  28. <ClCompile Include="..\Common\b2Math.cpp" />
  29. <ClCompile Include="..\Common\b2Settings.cpp" />
  30. <ClCompile Include="..\Common\b2StackAllocator.cpp" />
  31. <ClCompile Include="..\Common\b2Timer.cpp" />
  32. <ClCompile Include="..\Dynamics\b2Body.cpp" />
  33. <ClCompile Include="..\Dynamics\b2ContactManager.cpp" />
  34. <ClCompile Include="..\Dynamics\b2Fixture.cpp" />
  35. <ClCompile Include="..\Dynamics\b2Island.cpp" />
  36. <ClCompile Include="..\Dynamics\b2World.cpp" />
  37. <ClCompile Include="..\Dynamics\b2WorldCallbacks.cpp" />
  38. <ClCompile Include="..\Dynamics\Contacts\b2ChainAndCircleContact.cpp" />
  39. <ClCompile Include="..\Dynamics\Contacts\b2ChainAndPolygonContact.cpp" />
  40. <ClCompile Include="..\Dynamics\Contacts\b2CircleContact.cpp" />
  41. <ClCompile Include="..\Dynamics\Contacts\b2Contact.cpp" />
  42. <ClCompile Include="..\Dynamics\Contacts\b2ContactSolver.cpp" />
  43. <ClCompile Include="..\Dynamics\Contacts\b2EdgeAndCircleContact.cpp" />
  44. <ClCompile Include="..\Dynamics\Contacts\b2EdgeAndPolygonContact.cpp" />
  45. <ClCompile Include="..\Dynamics\Contacts\b2PolygonAndCircleContact.cpp" />
  46. <ClCompile Include="..\Dynamics\Contacts\b2PolygonContact.cpp" />
  47. <ClCompile Include="..\Dynamics\Joints\b2DistanceJoint.cpp" />
  48. <ClCompile Include="..\Dynamics\Joints\b2FrictionJoint.cpp" />
  49. <ClCompile Include="..\Dynamics\Joints\b2GearJoint.cpp" />
  50. <ClCompile Include="..\Dynamics\Joints\b2Joint.cpp" />
  51. <ClCompile Include="..\Dynamics\Joints\b2MotorJoint.cpp" />
  52. <ClCompile Include="..\Dynamics\Joints\b2MouseJoint.cpp" />
  53. <ClCompile Include="..\Dynamics\Joints\b2PrismaticJoint.cpp" />
  54. <ClCompile Include="..\Dynamics\Joints\b2PulleyJoint.cpp" />
  55. <ClCompile Include="..\Dynamics\Joints\b2RevoluteJoint.cpp" />
  56. <ClCompile Include="..\Dynamics\Joints\b2RopeJoint.cpp" />
  57. <ClCompile Include="..\Dynamics\Joints\b2WeldJoint.cpp" />
  58. <ClCompile Include="..\Dynamics\Joints\b2WheelJoint.cpp" />
  59. <ClCompile Include="..\Rope\b2Rope.cpp" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ClInclude Include="..\Box2D.h" />
  63. <ClInclude Include="..\Collision\b2BroadPhase.h" />
  64. <ClInclude Include="..\Collision\b2Collision.h" />
  65. <ClInclude Include="..\Collision\b2Distance.h" />
  66. <ClInclude Include="..\Collision\b2DynamicTree.h" />
  67. <ClInclude Include="..\Collision\b2TimeOfImpact.h" />
  68. <ClInclude Include="..\Collision\Shapes\b2ChainShape.h" />
  69. <ClInclude Include="..\Collision\Shapes\b2CircleShape.h" />
  70. <ClInclude Include="..\Collision\Shapes\b2EdgeShape.h" />
  71. <ClInclude Include="..\Collision\Shapes\b2PolygonShape.h" />
  72. <ClInclude Include="..\Collision\Shapes\b2Shape.h" />
  73. <ClInclude Include="..\Common\b2BlockAllocator.h" />
  74. <ClInclude Include="..\Common\b2Draw.h" />
  75. <ClInclude Include="..\Common\b2GrowableStack.h" />
  76. <ClInclude Include="..\Common\b2Math.h" />
  77. <ClInclude Include="..\Common\b2Settings.h" />
  78. <ClInclude Include="..\Common\b2StackAllocator.h" />
  79. <ClInclude Include="..\Common\b2Timer.h" />
  80. <ClInclude Include="..\Dynamics\b2Body.h" />
  81. <ClInclude Include="..\Dynamics\b2ContactManager.h" />
  82. <ClInclude Include="..\Dynamics\b2Fixture.h" />
  83. <ClInclude Include="..\Dynamics\b2Island.h" />
  84. <ClInclude Include="..\Dynamics\b2TimeStep.h" />
  85. <ClInclude Include="..\Dynamics\b2World.h" />
  86. <ClInclude Include="..\Dynamics\b2WorldCallbacks.h" />
  87. <ClInclude Include="..\Dynamics\Contacts\b2ChainAndCircleContact.h" />
  88. <ClInclude Include="..\Dynamics\Contacts\b2ChainAndPolygonContact.h" />
  89. <ClInclude Include="..\Dynamics\Contacts\b2CircleContact.h" />
  90. <ClInclude Include="..\Dynamics\Contacts\b2Contact.h" />
  91. <ClInclude Include="..\Dynamics\Contacts\b2ContactSolver.h" />
  92. <ClInclude Include="..\Dynamics\Contacts\b2EdgeAndCircleContact.h" />
  93. <ClInclude Include="..\Dynamics\Contacts\b2EdgeAndPolygonContact.h" />
  94. <ClInclude Include="..\Dynamics\Contacts\b2PolygonAndCircleContact.h" />
  95. <ClInclude Include="..\Dynamics\Contacts\b2PolygonContact.h" />
  96. <ClInclude Include="..\Dynamics\Joints\b2DistanceJoint.h" />
  97. <ClInclude Include="..\Dynamics\Joints\b2FrictionJoint.h" />
  98. <ClInclude Include="..\Dynamics\Joints\b2GearJoint.h" />
  99. <ClInclude Include="..\Dynamics\Joints\b2Joint.h" />
  100. <ClInclude Include="..\Dynamics\Joints\b2MotorJoint.h" />
  101. <ClInclude Include="..\Dynamics\Joints\b2MouseJoint.h" />
  102. <ClInclude Include="..\Dynamics\Joints\b2PrismaticJoint.h" />
  103. <ClInclude Include="..\Dynamics\Joints\b2PulleyJoint.h" />
  104. <ClInclude Include="..\Dynamics\Joints\b2RevoluteJoint.h" />
  105. <ClInclude Include="..\Dynamics\Joints\b2RopeJoint.h" />
  106. <ClInclude Include="..\Dynamics\Joints\b2WeldJoint.h" />
  107. <ClInclude Include="..\Dynamics\Joints\b2WheelJoint.h" />
  108. <ClInclude Include="..\Rope\b2Rope.h" />
  109. </ItemGroup>
  110. <PropertyGroup Label="Globals">
  111. <ProjectName>libbox2d</ProjectName>
  112. <ProjectGuid>{929480E7-23C0-4DF6-8456-096D71547116}</ProjectGuid>
  113. <RootNamespace>libbox2d.win32</RootNamespace>
  114. <Keyword>Win32Proj</Keyword>
  115. </PropertyGroup>
  116. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  117. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  118. <ConfigurationType>StaticLibrary</ConfigurationType>
  119. <CharacterSet>Unicode</CharacterSet>
  120. <PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
  121. <PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
  122. <PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0'">v140</PlatformToolset>
  123. <PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v140_xp</PlatformToolset>
  124. </PropertyGroup>
  125. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  126. <ConfigurationType>StaticLibrary</ConfigurationType>
  127. <CharacterSet>Unicode</CharacterSet>
  128. <PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
  129. <PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
  130. <PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0'">v140</PlatformToolset>
  131. <PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v140_xp</PlatformToolset>
  132. </PropertyGroup>
  133. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  134. <ImportGroup Label="ExtensionSettings">
  135. </ImportGroup>
  136. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  137. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  138. </ImportGroup>
  139. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  140. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  141. </ImportGroup>
  142. <PropertyGroup Label="UserMacros" />
  143. <PropertyGroup>
  144. <_ProjectFileVersion>12.0.21005.1</_ProjectFileVersion>
  145. <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
  146. <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
  147. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
  148. <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
  149. <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
  150. <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
  151. <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
  152. <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
  153. <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
  154. <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
  155. </PropertyGroup>
  156. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  157. <LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
  158. </PropertyGroup>
  159. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  160. <LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
  161. </PropertyGroup>
  162. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  163. <ClCompile>
  164. <Optimization>Disabled</Optimization>
  165. <AdditionalIncludeDirectories>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\include;../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  166. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  167. <MinimalRebuild>false</MinimalRebuild>
  168. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  169. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  170. <PrecompiledHeader>
  171. </PrecompiledHeader>
  172. <WarningLevel>Level3</WarningLevel>
  173. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  174. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  175. </ClCompile>
  176. <Lib>
  177. <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
  178. </Lib>
  179. </ItemDefinitionGroup>
  180. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  181. <ClCompile>
  182. <AdditionalIncludeDirectories>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\include;../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  183. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  184. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  185. <PrecompiledHeader>
  186. </PrecompiledHeader>
  187. <WarningLevel>Level3</WarningLevel>
  188. <DebugInformationFormat>None</DebugInformationFormat>
  189. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  190. <Optimization>MinSpace</Optimization>
  191. <WholeProgramOptimization>false</WholeProgramOptimization>
  192. </ClCompile>
  193. <Lib>
  194. <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile>
  195. </Lib>
  196. </ItemDefinitionGroup>
  197. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  198. <ImportGroup Label="ExtensionTargets">
  199. </ImportGroup>
  200. </Project>