INSTALL 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. cmake CMakeLists.txt -G 'Unix Makefiles'
  28. 2. make
  29. For Windows:
  30. 1. Open a command prompt
  31. 2. cmake CMakeLists.txt
  32. 2. Open your default IDE and build it