diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-11-17 12:55:06 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-11-17 12:55:06 -0800 |
commit | b17b440d75a874b404f5493cc8ca9a1d6dbeb08c (patch) | |
tree | 056fd4f6191ba13f9c9118594dbb0526ca469e1c | |
parent | 3f1d0fb1bd597ea41d52828a9380fccdc06314bf (diff) | |
download | uhd-b17b440d75a874b404f5493cc8ca9a1d6dbeb08c.tar.gz uhd-b17b440d75a874b404f5493cc8ca9a1d6dbeb08c.tar.bz2 uhd-b17b440d75a874b404f5493cc8ca9a1d6dbeb08c.zip |
cmake: Cleaned up output, removed duplicate OctoClock component registration
-rw-r--r-- | host/docs/CMakeLists.txt | 3 | ||||
-rw-r--r-- | host/lib/transport/CMakeLists.txt | 1 | ||||
-rw-r--r-- | host/lib/usrp_clock/octoclock/CMakeLists.txt | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt index 3090d3f80..580295235 100644 --- a/host/docs/CMakeLists.txt +++ b/host/docs/CMakeLists.txt @@ -63,7 +63,6 @@ ENDIF(ENABLE_MANUAL) ######################################################################## # Setup API documentation (using Doxygen) ######################################################################## -MESSAGE(STATUS "") 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) @@ -90,7 +89,6 @@ ENDIF(ENABLE_DOXYGEN) ######################################################################## # Run Doxygen (on code and/or manual, depending on CMake flags) ######################################################################## -MESSAGE(STATUS "") IF(ENABLE_MANUAL_OR_DOXYGEN) #generate the doxygen configuration file SET(CMAKE_CURRENT_BINARY_DIR_DOXYGEN ${CMAKE_CURRENT_BINARY_DIR}/doxygen) @@ -133,7 +131,6 @@ SET(man_page_sources ######################################################################## # Setup man pages ######################################################################## -MESSAGE(STATUS "") FIND_PACKAGE(GZip) # No elegant way in CMake to reverse a boolean diff --git a/host/lib/transport/CMakeLists.txt b/host/lib/transport/CMakeLists.txt index 23a06bcd3..79c8a90b7 100644 --- a/host/lib/transport/CMakeLists.txt +++ b/host/lib/transport/CMakeLists.txt @@ -30,6 +30,7 @@ ENDIF(ENABLE_X300) # Setup libusb ######################################################################## IF(ENABLE_USB) + MESSAGE(STATUS "") MESSAGE(STATUS "USB support enabled via libusb.") INCLUDE_DIRECTORIES(${LIBUSB_INCLUDE_DIRS}) LIBUHD_APPEND_LIBS(${LIBUSB_LIBRARIES}) diff --git a/host/lib/usrp_clock/octoclock/CMakeLists.txt b/host/lib/usrp_clock/octoclock/CMakeLists.txt index a74cb034f..d3728344e 100644 --- a/host/lib/usrp_clock/octoclock/CMakeLists.txt +++ b/host/lib/usrp_clock/octoclock/CMakeLists.txt @@ -18,8 +18,6 @@ ######################################################################## # Conditionally configure the OctoClock support ######################################################################## -LIBUHD_REGISTER_COMPONENT("OctoClock" ENABLE_OCTOCLOCK ON "ENABLE_LIBUHD" OFF OFF) - IF(ENABLE_OCTOCLOCK) ADD_DEFINITIONS(-DIHEX_USE_STDBOOL) |