diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-03-19 15:18:37 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-04-24 11:55:05 -0700 |
commit | f6f2e96116164d416387d828121fb330d5108b05 (patch) | |
tree | bbb0ca714229d1c1bba7bf847f3549c2feae5de3 /host/docs/CMakeLists.txt | |
parent | 32869d2f345c38a17647b8b430f46e932992cbbe (diff) | |
download | uhd-f6f2e96116164d416387d828121fb330d5108b05.tar.gz uhd-f6f2e96116164d416387d828121fb330d5108b05.tar.bz2 uhd-f6f2e96116164d416387d828121fb330d5108b05.zip |
docs: Auto-generate build page with min deps versions
The build guide manual page now takes the min versions for the
dependencies straight from CMake. This avoids having to update the
manual whenever we bump depdendencies.
Diffstat (limited to 'host/docs/CMakeLists.txt')
-rw-r--r-- | host/docs/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt index dad958bc5..240a534db 100644 --- a/host/docs/CMakeLists.txt +++ b/host/docs/CMakeLists.txt @@ -1,6 +1,7 @@ # # Copyright 2010-2013,2015 Ettus Research LLC # Copyright 2018 Ettus Research, a National Instruments Company +# Copyright 2019 Ettus Research, a National Instruments Brand # # SPDX-License-Identifier: GPL-3.0-or-later # @@ -103,6 +104,10 @@ if(ENABLE_MANUAL_OR_DOXYGEN) ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) + configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/build.dox.in + ${CMAKE_CURRENT_BINARY_DIR}/build.dox + @ONLY) #make doxygen directory depend on the header files file(GLOB_RECURSE header_files ${CMAKE_SOURCE_DIR}/include/*.hpp) |