diff options
author | Alex Williams <alex.williams@ni.com> | 2019-11-04 16:20:59 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:33 -0800 |
commit | 80ec3fee4298d5b0defd98db7dcf1a01f49e9778 (patch) | |
tree | ebb2cd2463588f2e69d494b47dcc9b3b2f5b14b3 /host/lib/usrp/mpmd | |
parent | f5861562d9fde84d73c381aa51753602a75546f2 (diff) | |
download | uhd-80ec3fee4298d5b0defd98db7dcf1a01f49e9778.tar.gz uhd-80ec3fee4298d5b0defd98db7dcf1a01f49e9778.tar.bz2 uhd-80ec3fee4298d5b0defd98db7dcf1a01f49e9778.zip |
lib,tests: Remove old DPDK files from build
The DPDK files are left behind as a reference, for now.
Diffstat (limited to 'host/lib/usrp/mpmd')
-rw-r--r-- | host/lib/usrp/mpmd/CMakeLists.txt | 15 |
1 files changed, 8 insertions, 7 deletions
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) |