Building.txt
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. Box2D uses CMake to describe the build in a platform independent manner.
  2. First download and install cmake from cmake.org
  3. For Microsoft Visual Studio:
  4. - Run the cmake-gui
  5. - Set the source directory to the path of Box2D on your PC (the folder that contains this file).
  6. - Set the build directory to be the path of Box2D/Build on your PC.
  7. - Press the Configure button and select your version of Visual Studio.
  8. - You may have to press the Configure button again.
  9. - Press the Generate button.
  10. - Open Box2D/Build/Box2D.sln.
  11. - Set the Testbed or HelloWorld as your startup project.
  12. - Press F5 or Ctrl-F5 to run.
  13. For Unix platforms, say the following on a terminal: (Replace $BOX2DPATH with the directory where this file is located.)
  14. cd $BOX2DPATH/Build
  15. cmake -DBOX2D_INSTALL=ON -DBOX2D_BUILD_SHARED=ON ..
  16. make
  17. make install
  18. You might want to add -DCMAKE_INSTALL_PREFIX=/opt/Box2D or similar to the cmake call to change the installation location. make install might need sudo.