aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp_e
diff options
context:
space:
mode:
authorPhilip Balister <philip@opensdr.com>2010-09-09 20:41:38 -0400
committerPhilip Balister <philip@opensdr.com>2010-09-09 20:41:38 -0400
commit5fe26aa11d3fbd32aa60d44aef2a50381b497eeb (patch)
treee227349732a7aa1508fcb5a727b851500a45c97f /host/lib/usrp/usrp_e
parent09a1b77a65202e6c569be7e1b31d9d453ef388a2 (diff)
parentbc824badaa981c1785d8c76d7cf56274d7c582b8 (diff)
downloaduhd-5fe26aa11d3fbd32aa60d44aef2a50381b497eeb.tar.gz
uhd-5fe26aa11d3fbd32aa60d44aef2a50381b497eeb.tar.bz2
uhd-5fe26aa11d3fbd32aa60d44aef2a50381b497eeb.zip
Merge branch 'usrp_e' of ettus.sourcerepo.com:ettus/uhdpriv into usrp_e
Diffstat (limited to 'host/lib/usrp/usrp_e')
-rw-r--r--host/lib/usrp/usrp_e/CMakeLists.txt17
1 files changed, 14 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp_e/CMakeLists.txt b/host/lib/usrp/usrp_e/CMakeLists.txt
index f0c125f26..da759d931 100644
--- a/host/lib/usrp/usrp_e/CMakeLists.txt
+++ b/host/lib/usrp/usrp_e/CMakeLists.txt
@@ -25,7 +25,18 @@ MESSAGE(STATUS "Configuring usrp-e support...")
INCLUDE(CheckIncludeFileCXX)
CHECK_INCLUDE_FILE_CXX(linux/usrp_e.h HAVE_LINUX_USRP_E_H)
-IF(HAVE_LINUX_USRP_E_H)
+IF(DEFINED ENABLE_USRP_E)
+ IF(ENABLE_USRP_E)
+ MESSAGE(STATUS "USRP-E support enabled by configure flag")
+ ELSE(ENABLE_USRP_E)
+ MESSAGE(STATUS "USRP-E support disabled by configure flag")
+ ENDIF(ENABLE_USRP_E)
+ELSE(DEFINED ENABLE_USRP_E) #not defined: automatic enabling of component
+ SET(ENABLE_USRP_E ${HAVE_LINUX_USRP_E_H})
+ENDIF(DEFINED ENABLE_USRP_E)
+SET(ENABLE_USRP_E ${ENABLE_USRP_E} CACHE BOOL "enable USRP-E support")
+
+IF(ENABLE_USRP_E)
MESSAGE(STATUS " Building usrp-e support.")
LIBUHD_APPEND_SOURCES(
${CMAKE_SOURCE_DIR}/lib/usrp/usrp_e/clock_ctrl.cpp
@@ -45,6 +56,6 @@ IF(HAVE_LINUX_USRP_E_H)
${CMAKE_SOURCE_DIR}/lib/usrp/usrp_e/usrp_e_iface.hpp
${CMAKE_SOURCE_DIR}/lib/usrp/usrp_e/usrp_e_regs.hpp
)
-ELSE(HAVE_LINUX_USRP_E_H)
+ELSE(ENABLE_USRP_E)
MESSAGE(STATUS " Skipping usrp-e support.")
-ENDIF(HAVE_LINUX_USRP_E_H)
+ENDIF(ENABLE_USRP_E)