INSTALL 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ========================================================================
  2. Open Asset Import Library (assimp) INSTALL
  3. ========================================================================
  4. ------------------------------
  5. Getting the documentation
  6. ------------------------------
  7. A regularly-updated copy is available at
  8. http://assimp.sourceforge.net/lib_html/index.html
  9. A CHM file is included in the SVN repos: ./doc/AssimpDoc_Html/AssimpDoc.chm.
  10. To build the doxygen documentation on your own, follow these steps:
  11. a) download & install latest doxygen
  12. b) make sure doxygen is in the executable search path
  13. c) navigate to ./doc
  14. d) and run 'doxygen'
  15. Open the generated HTML (AssimpDoc_Html/index.html) in the browser of your choice.
  16. Windows only: To generate the CHM doc, install 'Microsoft HTML Workshop'
  17. and configure the path to it in the DOXYFILE first.
  18. ------------------------------
  19. Building Assimp
  20. ------------------------------
  21. More detailed build instructions can be found in the documentation,
  22. this section is just for the inpatient among you.
  23. CMake is the preferred build system for Assimp. The minimum required version
  24. is 2.6. If you don't have it yet, downloads for CMake can be found on
  25. http://www.cmake.org/.
  26. For Unix:
  27. 1. mkdir build && cd build
  28. 2. cmake .. -G 'Unix Makefiles'
  29. 3. make -j4
  30. For Windows:
  31. 1. Open a command prompt
  32. 2. mkdir build
  33. 3. cd build
  34. 4. cmake ..
  35. 5. cmake --build .
  36. For iOS:
  37. Just check the following project, which deploys a compiler toolchain for different iOS-versions: https://github.com/assimp/assimp/tree/master/port/iOS