2014-05-13 09:30:41 -05:00
|
|
|
# -*- mode: CMAKE; explicit-buffer-name: # "CMakeLists.txt<katabatic/doc>" -*-
|
2010-03-09 09:24:29 -06:00
|
|
|
|
2010-05-18 07:53:08 -05:00
|
|
|
set ( htmlInstallDir share/doc/coriolis2/en/html/katabatic )
|
|
|
|
set ( latexInstallDir share/doc/coriolis2/en/latex/katabatic )
|
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:29 -06:00
|
|
|
|
2018-06-06 11:42:26 -05:00
|
|
|
if(BUILD_DOC and DOXYGEN_FOUND)
|
2017-12-02 20:19:10 -06:00
|
|
|
add_custom_target ( doc ALL
|
|
|
|
cd ${KATABATIC_SOURCE_DIR}/doc
|
|
|
|
&& ${DOXYGEN_EXECUTABLE} doxyfile
|
|
|
|
&& cp -f ${doxExtras} html
|
|
|
|
)
|
2018-06-06 11:42:26 -05:00
|
|
|
endif()
|
2010-03-09 09:24:29 -06:00
|
|
|
|
|
|
|
install ( DIRECTORY html/ DESTINATION ${htmlInstallDir} )
|
|
|
|
install ( DIRECTORY latex/ DESTINATION ${latexInstallDir} )
|
|
|
|
install ( FILES asimbook.cls DESTINATION ${latexInstallDir} )
|