Add dependency from CMakeLists.txt since it is used to get version.

This commit is contained in:
Victor Zverovich 2014-08-21 08:51:45 -07:00
parent 034aedb6d4
commit 45397e5046

View File

@ -2,5 +2,6 @@ add_custom_command(OUTPUT html/index.html
COMMAND doxygen COMMAND doxygen
COMMAND rm -rf html COMMAND rm -rf html
COMMAND sphinx-build -b html . html COMMAND sphinx-build -b html . html
DEPENDS ../format.h Doxyfile conf.py index.rst _templates/layout.html) DEPENDS ../CMakeLists.txt ../format.h Doxyfile
conf.py index.rst _templates/layout.html)
add_custom_target(doc DEPENDS html/index.html) add_custom_target(doc DEPENDS html/index.html)