fmt/doc/CMakeLists.txt

8 lines
268 B
CMake
Raw Normal View History

2012-12-18 06:49:18 -08:00
add_custom_command(OUTPUT html/index.html
COMMAND doxygen
2014-04-14 12:54:03 -07:00
COMMAND rm -rf html
2014-07-27 10:07:20 -07:00
COMMAND sphinx-build -b html . html
DEPENDS ../CMakeLists.txt ../format.h Doxyfile
conf.py index.rst _templates/layout.html)
2012-12-18 06:49:18 -08:00
add_custom_target(doc DEPENDS html/index.html)