From 9f86468c00bb1e1c9c904a1142d7406dc86af28d Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 27 Jun 2015 15:28:27 -0700 Subject: [PATCH] Make sure the output directory is created before we run asciidoc Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2629590e..943de13ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -517,11 +517,19 @@ if(NOT insource) ln -s ${CMAKE_SOURCE_DIR}/Documentation/images ${CMAKE_BINARY_DIR}/Documentation/images ) endif() +else() + if(NOT NO_DOCS) + add_custom_target( + documentationLink ALL + ) + endif() endif() if(NOT NO_DOCS) add_custom_target( documentation ALL + COMMAND make -C ${CMAKE_SOURCE_DIR}/Documentation OUT=${CMAKE_BINARY_DIR}/Documentation/ doc + DEPENDS documentationLink ) endif()