fmt/doc/CMakeLists.txt

7 lines
202 B
CMake
Raw Normal View History

2012-12-18 18:49:18 +04:00
add_custom_command(OUTPUT html/index.html
COMMAND doxygen
2013-01-03 20:57:34 +04:00
COMMAND rm -rf ../html
2012-12-18 18:49:18 +04:00
COMMAND sphinx-build -b html . ../html
DEPENDS conf.py index.rst)
add_custom_target(doc DEPENDS html/index.html)