aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs/CMakeLists.txt
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-04-08 16:52:48 -0700
committerMartin Braun <martin.braun@ettus.com>2016-04-08 16:52:48 -0700
commit053111dccdc46d0e6013002192e7d828d393d2a7 (patch)
tree28056f315a597c1e18d8ab02b9474d4f246f1359 /host/docs/CMakeLists.txt
parent0811fbed937c1ed679c514929728a992b46738a6 (diff)
parent62f80e22b22eb076e649fc0aee8bbb2c292fa17b (diff)
downloaduhd-053111dccdc46d0e6013002192e7d828d393d2a7.tar.gz
uhd-053111dccdc46d0e6013002192e7d828d393d2a7.tar.bz2
uhd-053111dccdc46d0e6013002192e7d828d393d2a7.zip
Merge branch 'maint'
Diffstat (limited to 'host/docs/CMakeLists.txt')
-rw-r--r--host/docs/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt
index ed462459c..7f510f58c 100644
--- a/host/docs/CMakeLists.txt
+++ b/host/docs/CMakeLists.txt
@@ -65,6 +65,7 @@ ENDIF(ENABLE_MANUAL)
########################################################################
LIBUHD_REGISTER_COMPONENT("API/Doxygen" ENABLE_DOXYGEN ON "DOXYGEN_FOUND" OFF OFF)
OPTION(ENABLE_DOXYGEN_FULL "Use Doxygen to document the entire source tree (not just API)" OFF)
+OPTION(ENABLE_DOXYGEN_DOT "Let Doxygen use dot (requires graphviz)" OFF)
IF(LIBUHDDEV_PKG)
SET(PKG_DOC_DIR share/doc/libuhd-dev)
@@ -92,6 +93,12 @@ ENDIF(ENABLE_DOXYGEN)
IF(ENABLE_MANUAL_OR_DOXYGEN)
#generate the doxygen configuration file
SET(CMAKE_CURRENT_BINARY_DIR_DOXYGEN ${CMAKE_CURRENT_BINARY_DIR}/doxygen)
+ IF(ENABLE_DOXYGEN_DOT)
+ SET(DOXYGEN_HAVE_DOT "YES")
+ ELSE(ENABLE_DOXYGEN_DOT)
+ SET(DOXYGEN_HAVE_DOT "NO")
+ ENDIF(ENABLE_DOXYGEN_DOT)
+
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile