fmt/doc/CMakeLists.txt

7 lines
241 B
CMake
Raw Normal View History

2012-12-18 18:49:18 +04:00
add_custom_command(OUTPUT html/index.html
COMMAND doxygen
2014-04-14 23:54:03 +04:00
COMMAND rm -rf html
2014-05-13 18:32:28 +04:00
COMMAND ../sphinx/sphinx-build.py -b html . html
2014-05-13 17:15:18 +04:00
DEPENDS Doxyfile conf.py index.rst _templates/layout.html)
2012-12-18 18:49:18 +04:00
add_custom_target(doc DEPENDS html/index.html)