You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
1.6 KiB

  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. Building Assimp with CMake is 'business as usual' if you've used CMake
  27. before. All steps can be done either on the command line / shell or
  28. by using the CMake GUI tool, the choice is up to you.
  29. First, invoke CMake to generate build files for a particular
  30. toolchain (for standard GNU makefiles: cmake -G 'Unix Makefiles').
  31. Afterwards, use the generated build files to perform the actual
  32. build.