From 526929071a43b820e6ee45961e0a10e605862e91 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Sat, 9 Jun 2018 22:42:47 -0700 Subject: cmake: Add ENABLE_N300 target Driver support for N310/N300 was previously implied by ENABLE_MPMD, which had two issues: 1) It was not clear that ENABLE_MPMD was actually enabling the N3x0 2) It did not allow to enable mpmd support without N3x0 support This resolves these issues. --- host/lib/CMakeLists.txt | 1 + host/lib/usrp/dboard/CMakeLists.txt | 8 ++++++-- host/lib/usrp/dboard/eiscat/CMakeLists.txt | 13 +++++++------ host/lib/usrp/dboard/magnesium/CMakeLists.txt | 27 ++++++++++++++------------- 4 files changed, 28 insertions(+), 21 deletions(-) (limited to 'host') diff --git a/host/lib/CMakeLists.txt b/host/lib/CMakeLists.txt index 2c1422119..984f16f96 100644 --- a/host/lib/CMakeLists.txt +++ b/host/lib/CMakeLists.txt @@ -74,6 +74,7 @@ LIBUHD_REGISTER_COMPONENT("USRP2" ENABLE_USRP2 ON "ENABLE_LIBUHD" OFF OFF) LIBUHD_REGISTER_COMPONENT("X300" ENABLE_X300 ON "ENABLE_LIBUHD" OFF OFF) LIBUHD_REGISTER_COMPONENT("N230" ENABLE_N230 ON "ENABLE_LIBUHD" OFF OFF) LIBUHD_REGISTER_COMPONENT("MPMD" ENABLE_MPMD ON "ENABLE_LIBUHD" OFF OFF) +LIBUHD_REGISTER_COMPONENT("N300" ENABLE_N300 ON "ENABLE_LIBUHD;ENABLE_MPMD" OFF OFF) LIBUHD_REGISTER_COMPONENT("OctoClock" ENABLE_OCTOCLOCK ON "ENABLE_LIBUHD" OFF OFF) ######################################################################## diff --git a/host/lib/usrp/dboard/CMakeLists.txt b/host/lib/usrp/dboard/CMakeLists.txt index 6bca04290..83bb0a96c 100644 --- a/host/lib/usrp/dboard/CMakeLists.txt +++ b/host/lib/usrp/dboard/CMakeLists.txt @@ -46,5 +46,9 @@ IF(ENABLE_X300) ) ENDIF(ENABLE_X300) -INCLUDE_SUBDIRECTORY(magnesium) -INCLUDE_SUBDIRECTORY(eiscat) +IF(ENABLE_N300) + INCLUDE_SUBDIRECTORY(magnesium) +ENDIF(ENABLE_N300) +IF(ENABLE_MPMD AND ENABLE_EISCAT) + INCLUDE_SUBDIRECTORY(eiscat) +ENDIF(ENABLE_MPMD AND ENABLE_EISCAT) diff --git a/host/lib/usrp/dboard/eiscat/CMakeLists.txt b/host/lib/usrp/dboard/eiscat/CMakeLists.txt index 156e139fb..13da2d6da 100644 --- a/host/lib/usrp/dboard/eiscat/CMakeLists.txt +++ b/host/lib/usrp/dboard/eiscat/CMakeLists.txt @@ -4,10 +4,11 @@ # SPDX-License-Identifier: GPL-3.0 # -IF(ENABLE_MPMD AND ENABLE_EISCAT) - LIST(APPEND EISCAT_SOURCES - ${CMAKE_CURRENT_SOURCE_DIR}/eiscat_radio_ctrl_impl.cpp - ) - LIBUHD_APPEND_SOURCES(${EISCAT_SOURCES}) -ENDIF(ENABLE_MPMD AND ENABLE_EISCAT) +# This file is conditionally included if ENABLE_MPMD and ENABLE_EISCAT are +# set to true. + +LIST(APPEND EISCAT_SOURCES + ${CMAKE_CURRENT_SOURCE_DIR}/eiscat_radio_ctrl_impl.cpp +) +LIBUHD_APPEND_SOURCES(${EISCAT_SOURCES}) diff --git a/host/lib/usrp/dboard/magnesium/CMakeLists.txt b/host/lib/usrp/dboard/magnesium/CMakeLists.txt index eca9e5234..417cd4f54 100644 --- a/host/lib/usrp/dboard/magnesium/CMakeLists.txt +++ b/host/lib/usrp/dboard/magnesium/CMakeLists.txt @@ -4,17 +4,18 @@ # SPDX-License-Identifier: GPL-3.0 # -IF(ENABLE_MPMD) - LIST(APPEND MAGNESIUM_SOURCES - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_impl.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_init.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_cpld.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_gain.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_ad9371_iface.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_bands.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_cpld_ctrl.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_gain_table.cpp - ) - LIBUHD_APPEND_SOURCES(${MAGNESIUM_SOURCES}) -ENDIF(ENABLE_MPMD) +# This file is conditionally included if ENABLE_MPMD and ENABLE_N300 are +# set to true. + +LIST(APPEND MAGNESIUM_SOURCES + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_impl.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_init.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_cpld.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_radio_ctrl_gain.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_ad9371_iface.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_bands.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_cpld_ctrl.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/magnesium_gain_table.cpp +) +LIBUHD_APPEND_SOURCES(${MAGNESIUM_SOURCES}) -- cgit v1.2.3