Fix building without python-docutils installed

master
Rogier 2016-06-14 17:22:59 +02:00
parent 67b79f5851
commit 12d0276da7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,6 @@
[]
Bugfixes:
- Fixed compilation failure when docutils is not installed
[31 May 2016]
Features:
- Support for postgresql backend added

View File

@ -70,5 +70,7 @@ if(USE_RST2HTML)
elseif(NOT USE_RST2HTML AND DOCUTILS_FOUND)
add_custom_target(htmldoc DEPENDS ${DOC_HTML_FILES})
endif(USE_RST2HTML)
RST2HTML(${DOC_RST_FILES})
if(USE_RST2HTML OR DOCUTILS_FOUND)
RST2HTML(${DOC_RST_FILES})
endif(USE_RST2HTML OR DOCUTILS_FOUND)