diff options
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/transport/CMakeLists.txt | 4 | ||||
-rw-r--r-- | host/lib/transport/uhd-dpdk/CMakeLists.txt | 10 | ||||
-rw-r--r-- | host/lib/usrp/mpmd/CMakeLists.txt | 15 |
3 files changed, 8 insertions, 21 deletions
diff --git a/host/lib/transport/CMakeLists.txt b/host/lib/transport/CMakeLists.txt index d39ca7336..646b2837e 100644 --- a/host/lib/transport/CMakeLists.txt +++ b/host/lib/transport/CMakeLists.txt @@ -143,9 +143,5 @@ endif(ENABLE_LIBERIO) if(ENABLE_DPDK) INCLUDE_SUBDIRECTORY(uhd-dpdk) - LIBUHD_APPEND_SOURCES( - ${CMAKE_CURRENT_SOURCE_DIR}/dpdk_zero_copy.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/dpdk_simple.cpp - ) endif(ENABLE_DPDK) diff --git a/host/lib/transport/uhd-dpdk/CMakeLists.txt b/host/lib/transport/uhd-dpdk/CMakeLists.txt index 01cd0957c..ea78aa1e8 100644 --- a/host/lib/transport/uhd-dpdk/CMakeLists.txt +++ b/host/lib/transport/uhd-dpdk/CMakeLists.txt @@ -18,19 +18,9 @@ if(ENABLE_DPDK) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) LIBUHD_APPEND_SOURCES( - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_driver.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_fops.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_udp.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_wait.c ${CMAKE_CURRENT_SOURCE_DIR}/dpdk_common.cpp ) set_source_files_properties( - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_driver.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_fops.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_udp.c - ${CMAKE_CURRENT_SOURCE_DIR}/uhd_dpdk_wait.c ${CMAKE_CURRENT_SOURCE_DIR}/dpdk_common.cpp PROPERTIES COMPILE_FLAGS "${UHD_DPDK_CFLAGS} -D_GNU_SOURCE" ) diff --git a/host/lib/usrp/mpmd/CMakeLists.txt b/host/lib/usrp/mpmd/CMakeLists.txt index 18c9c6cbd..ce06913a3 100644 --- a/host/lib/usrp/mpmd/CMakeLists.txt +++ b/host/lib/usrp/mpmd/CMakeLists.txt @@ -11,8 +11,9 @@ if(ENABLE_MPMD) endif(ENABLE_LIBERIO) if(ENABLE_DPDK) - message(STATUS "Compiling MPMD with DPDK support...") - add_definitions(-DHAVE_DPDK) + message(STATUS "Compiling MPMD without DPDK support for now...") + # message(STATUS "Compiling MPMD with DPDK support...") + # add_definitions(-DHAVE_DPDK) endif(ENABLE_DPDK) LIBUHD_APPEND_SOURCES( @@ -33,10 +34,10 @@ if(ENABLE_MPMD) ) endif(ENABLE_LIBERIO) - if(ENABLE_DPDK) - LIBUHD_APPEND_SOURCES( - ${CMAKE_CURRENT_SOURCE_DIR}/mpmd_link_if_ctrl_dpdk_udp.cpp - ) - endif(ENABLE_DPDK) + # if(ENABLE_DPDK) + # LIBUHD_APPEND_SOURCES( + # ${CMAKE_CURRENT_SOURCE_DIR}/mpmd_link_if_ctrl_dpdk_udp.cpp + # ) + # endif(ENABLE_DPDK) endif(ENABLE_MPMD) |