fmt/doc/CMakeLists.txt
Victor Zverovich 891da2f474 Fix docs.
2014-05-13 07:39:18 -07:00

7 lines
253 B
CMake

add_custom_command(OUTPUT html/index.html
COMMAND doxygen
COMMAND rm -rf html
COMMAND ../sphinx/sphinx-build.py -b html . html
DEPENDS ../format.h Doxyfile conf.py index.rst _templates/layout.html)
add_custom_target(doc DEPENDS html/index.html)