2013-12-03 18:59:29 -06:00
|
|
|
# -*- explicit-buffer-name: "CMakeLists.txt<kite/doc>" -*-
|
2010-03-09 09:24:55 -06:00
|
|
|
|
2010-05-18 07:53:10 -05:00
|
|
|
set ( htmlInstallDir share/doc/coriolis2/en/html/kite )
|
|
|
|
set ( latexInstallDir share/doc/coriolis2/en/latex/kite )
|
2014-05-13 09:30:41 -05:00
|
|
|
set ( doxExtras customHierarchy.html
|
|
|
|
closed.png
|
|
|
|
open.png
|
2017-12-02 20:19:10 -06:00
|
|
|
tabs.css
|
2014-05-13 09:30:41 -05:00
|
|
|
)
|
2010-03-09 09:24:55 -06:00
|
|
|
|
2018-06-06 16:22:18 -05:00
|
|
|
if (BUILD_DOC AND DOXYGEN_FOUND)
|
2017-12-02 20:19:10 -06:00
|
|
|
add_custom_target ( doc ALL
|
|
|
|
cd ${KITE_SOURCE_DIR}/doc
|
|
|
|
&& ${DOXYGEN_EXECUTABLE} doxyfile
|
|
|
|
&& cp -f ${doxExtras} html
|
|
|
|
)
|
2018-06-06 11:42:26 -05:00
|
|
|
endif()
|
2010-03-09 09:24:55 -06:00
|
|
|
|
|
|
|
install ( DIRECTORY html/ DESTINATION ${htmlInstallDir} )
|
2014-05-13 09:30:41 -05:00
|
|
|
install ( FILES ${doxExtras} DESTINATION ${htmlInstallDir} )
|
2010-03-09 09:24:55 -06:00
|
|
|
|
|
|
|
install ( DIRECTORY latex/ DESTINATION ${latexInstallDir} )
|
|
|
|
install ( FILES asimbook.cls DESTINATION ${latexInstallDir} )
|