fmt/doc/CMakeLists.txt

7 lines
219 B
CMake
Raw Normal View History

2012-12-18 14:49:18 +00:00
add_custom_command(OUTPUT html/index.html
COMMAND doxygen
2014-04-14 19:54:03 +00:00
COMMAND rm -rf html
COMMAND sphinx-build -b html . html
2014-04-22 13:34:31 +00:00
DEPENDS conf.py index.rst _templates/layout.html)
2012-12-18 14:49:18 +00:00
add_custom_target(doc DEPENDS html/index.html)