mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2024-12-04 08:27:24 +00:00
6 lines
177 B
CMake
6 lines
177 B
CMake
add_custom_command(OUTPUT html/index.html
|
|
COMMAND doxygen
|
|
COMMAND sphinx-build -b html . ../html
|
|
DEPENDS conf.py index.rst)
|
|
add_custom_target(doc DEPENDS html/index.html)
|