Commit ec7b9480 authored by Yann Diorcet's avatar Yann Diorcet

Fix WITH_DOC

parent 54b89858
...@@ -674,6 +674,7 @@ foreach (txt ${docs}) ...@@ -674,6 +674,7 @@ foreach (txt ${docs})
string (REGEX REPLACE ".*/(.*)\\.txt" "\\1.html" html ${txt}) string (REGEX REPLACE ".*/(.*)\\.txt" "\\1.html" html ${txt})
set (src ${txt}) set (src ${txt})
set (dst doc/${html}) set (dst doc/${html})
if (WITH_DOC)
add_custom_command ( add_custom_command (
OUTPUT ${dst} OUTPUT ${dst}
COMMAND ${ASCIIDOC_EXECUTABLE} COMMAND ${ASCIIDOC_EXECUTABLE}
...@@ -686,7 +687,6 @@ foreach (txt ${docs}) ...@@ -686,7 +687,6 @@ foreach (txt ${docs})
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${src} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${src}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating ${html}") COMMENT "Generating ${html}")
if (WITH_DOC)
list (APPEND html-docs ${CMAKE_CURRENT_BINARY_DIR}/${dst}) list (APPEND html-docs ${CMAKE_CURRENT_BINARY_DIR}/${dst})
endif () endif ()
endforeach () endforeach ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment