From 5e4875eb188d80ef6a0321d7fe03c595370062a2 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 29 Nov 2010 19:09:43 -0500 Subject: uhd: added macro to enable/disable components libuhd prints summary of components added newline prints before config checks --- host/lib/usrp/usrp2/CMakeLists.txt | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'host/lib/usrp/usrp2') diff --git a/host/lib/usrp/usrp2/CMakeLists.txt b/host/lib/usrp/usrp2/CMakeLists.txt index f7984fce5..afd69cae9 100644 --- a/host/lib/usrp/usrp2/CMakeLists.txt +++ b/host/lib/usrp/usrp2/CMakeLists.txt @@ -20,21 +20,9 @@ ######################################################################## # Conditionally configure the USRP2 support ######################################################################## -MESSAGE(STATUS "Configuring USRP2 support...") - -IF(DEFINED ENABLE_USRP2) - IF(ENABLE_USRP2) - MESSAGE(STATUS "USRP2 support enabled by configure flag") - ELSE(ENABLE_USRP2) - MESSAGE(STATUS "USRP2 support disabled by configure flag") - ENDIF(ENABLE_USRP2) -ELSE(DEFINED ENABLE_USRP2) #not defined: automatic enabling of component - SET(ENABLE_USRP2 TRUE) -ENDIF(DEFINED ENABLE_USRP2) -SET(ENABLE_USRP2 ${ENABLE_USRP2} CACHE BOOL "enable USRP2 support") +LIBUHD_REGISTER_COMPONENT("USRP2" ENABLE_USRP2 TRUE) IF(ENABLE_USRP2) - MESSAGE(STATUS " Building USRP2 support.") LIBUHD_APPEND_SOURCES( ${CMAKE_SOURCE_DIR}/lib/usrp/usrp2/clock_ctrl.cpp ${CMAKE_SOURCE_DIR}/lib/usrp/usrp2/clock_ctrl.hpp @@ -57,6 +45,4 @@ IF(ENABLE_USRP2) ${CMAKE_SOURCE_DIR}/lib/usrp/usrp2/usrp2_regs.hpp ${CMAKE_SOURCE_DIR}/lib/usrp/usrp2/usrp2_regs.cpp ) -ELSE(ENABLE_USRP2) - MESSAGE(STATUS " Skipping USRP2 support.") ENDIF(ENABLE_USRP2) -- cgit v1.2.3