From 2d667b3500256df59b319d2e58b9f99891de488d Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 23 Jun 2015 17:07:47 -0700 Subject: doc: Integrated install instructions into manual --- host/docs/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/docs/CMakeLists.txt') diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt index eb4b67c29..c93afdb00 100644 --- a/host/docs/CMakeLists.txt +++ b/host/docs/CMakeLists.txt @@ -44,7 +44,7 @@ IF(ENABLE_MANUAL) SET(DOXYGEN_DEPENDENCIES ${manual_sources}) SET(DOXYGEN_INPUT_DIRS "${CMAKE_SOURCE_DIR}/docs") SET(DOXYGEN_DEP_COMPONENT "manual") - SET(DOXYGEN_FPGA_MANUAL_REFERENCE "Part III: FPGA Manual") + SET(DOXYGEN_FPGA_MANUAL_REFERENCE "Part III: FPGA Manual") SET(DOXYGEN_STRIP_EXTRA "") # Now, check if we have the FPGA sources as well. # If so, pull them in: -- cgit v1.2.3 From 6c804f722cd3e43f7e1b6b804b66c80f868154ca Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 23 Jun 2015 18:26:17 -0700 Subject: docs: Fixed FPGA manual auto-building --- host/CMakeLists.txt | 4 ++-- host/docs/CMakeLists.txt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'host/docs/CMakeLists.txt') diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index eaf61848f..93d8b115a 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -288,11 +288,11 @@ EXECUTE_PROCESS( COMMAND ${PYTHON_EXECUTABLE} -c "import os; print os.path.abspath(os.path.join('${CMAKE_SOURCE_DIR}', '..', 'fpga-src'))" OUTPUT_VARIABLE FPGA_SUBMODULE_DIR OUTPUT_STRIP_TRAILING_WHITESPACE - OUTPUT_QUIET ) -message(STATUS ${FPGA_SUBMODULE_DIR}) IF(EXISTS "${FPGA_SUBMODULE_DIR}/docs/fpga.md") SET(HAS_FPGA_SUBMODULE TRUE) + MESSAGE(STATUS "") + MESSAGE(STATUS "Found FPGA submodule: ${FPGA_SUBMODULE_DIR}") ENDIF(EXISTS "${FPGA_SUBMODULE_DIR}/docs/fpga.md") ######################################################################## diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt index c93afdb00..d0f060ceb 100644 --- a/host/docs/CMakeLists.txt +++ b/host/docs/CMakeLists.txt @@ -28,7 +28,6 @@ SET(ENABLE_MANUAL_OR_DOXYGEN false) ######################################################################## # Setup Manual (using Doxygen) ######################################################################## -MESSAGE(STATUS "") LIBUHD_REGISTER_COMPONENT("Manual" ENABLE_MANUAL ON "DOXYGEN_FOUND" OFF) # Check if fpga submodule is there. If yes: -- cgit v1.2.3