diff --git a/Changelog b/Changelog index 0a6511b..0e5fee7 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +[] + Bugfixes: + - Fixed compilation failure when docutils is not installed [31 May 2016] Features: - Support for postgresql backend added diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 0ddc750..cd9633b 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -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)