Skip to content
Snippets Groups Projects
Commit bb29d041 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[cmake][doxygen] Fix creation of Doxygen

The problem was, that UseLATEX.cmake introduced a target "html"
which interfierred with the Doxygen's OUTPUT html. The latter
is no longer a relative path but an absoulte one.
This fixes #41
parent 51f0848b
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ MACRO (add_doxygen_target)
# default output is html
if(NOT DOXYGEN_OUTPUT)
set(DOXYGEN_OUTPUT html)
set(DOXYGEN_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/html")
endif(NOT DOXYGEN_OUTPUT)
dune_module_path(MODULE dune-common RESULT scriptdir SCRIPT_DIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment