new stuff
This commit is contained in:
parent
8998bc3936
commit
64c8492e5c
6907 changed files with 3401899 additions and 0 deletions
42
vendor/assimp/doc/CMakeLists.txt
vendored
Normal file
42
vendor/assimp/doc/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
find_package( Doxygen REQUIRED )
|
||||
|
||||
set( HTML_OUTPUT "AssimpDoc_Html" CACHE STRING "Output directory for generated HTML documentation. Defaults to AssimpDoc_Html." )
|
||||
|
||||
# Enable Microsoft CHM help style only on Windows
|
||||
set( MICROSOFT_HELP_WORKSHOP "NO")
|
||||
if( MSVC )
|
||||
set( MICROSOFT_HELP_WORKSHOP "YES" )
|
||||
endif()
|
||||
|
||||
configure_file(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
|
||||
@ONLY
|
||||
)
|
||||
|
||||
add_custom_target(
|
||||
docs ALL
|
||||
DEPENDS docs.done
|
||||
)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT docs.done
|
||||
COMMAND ${DOXYGEN_EXECUTABLE}
|
||||
COMMAND ${CMAKE_COMMAND} -E touch docs.done
|
||||
COMMENT "Generating assimp documentation"
|
||||
VERBATIM
|
||||
)
|
||||
|
||||
if( DEFINED CMAKE_INSTALL_DOCDIR )
|
||||
install(
|
||||
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${HTML_OUTPUT}
|
||||
DESTINATION ${CMAKE_INSTALL_DOCDIR}
|
||||
)
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AssimpDoc_Html/AnimationOverview.png
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AssimpDoc_Html/AnimationOverview.svg
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AssimpDoc_Html/dragonsplash.png
|
||||
DESTINATION ${CMAKE_INSTALL_DOCDIR}/${HTML_OUTPUT}
|
||||
)
|
||||
endif()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue