ext-fmt/doc/CMakeLists.txt
2012-12-29 09:27:26 -08:00

6 lines
177 B
CMake

add_custom_command(OUTPUT html/index.html
COMMAND doxygen
COMMAND sphinx-build -b html . ../html
DEPENDS conf.py index.rst)
add_custom_target(doc DEPENDS html/index.html)