mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 20:32:49 +00:00
7 lines
253 B
CMake
7 lines
253 B
CMake
add_custom_command(OUTPUT html/index.html
|
|
COMMAND doxygen
|
|
COMMAND rm -rf html
|
|
COMMAND ../sphinx/sphinx-build.py -b html . html
|
|
DEPENDS ../format.h Doxyfile conf.py index.rst _templates/layout.html)
|
|
add_custom_target(doc DEPENDS html/index.html)
|