aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib
diff options
context:
space:
mode:
Diffstat (limited to 'mpm/lib')
-rw-r--r--mpm/lib/CMakeLists.txt5
-rw-r--r--mpm/lib/dboards/CMakeLists.txt9
2 files changed, 9 insertions, 5 deletions
diff --git a/mpm/lib/CMakeLists.txt b/mpm/lib/CMakeLists.txt
index 684a4d1e3..091c2c25f 100644
--- a/mpm/lib/CMakeLists.txt
+++ b/mpm/lib/CMakeLists.txt
@@ -8,10 +8,13 @@ SET(UHD_HOST_ROOT ${CMAKE_SOURCE_DIR}/../host)
ADD_SUBDIRECTORY(dboards)
ADD_SUBDIRECTORY(chips)
-ADD_SUBDIRECTORY(mykonos)
ADD_SUBDIRECTORY(spi)
ADD_SUBDIRECTORY(types)
+if(MPM_DEVICE STREQUAL "n3xx")
+ ADD_SUBDIRECTORY(mykonos)
+endif(MPM_DEVICE STREQUAL "n3xx")
+
USRP_PERIPHS_ADD_OBJECT(periphs
exception.cpp
xbar_iface.cpp
diff --git a/mpm/lib/dboards/CMakeLists.txt b/mpm/lib/dboards/CMakeLists.txt
index 7f728a836..a1017d8d3 100644
--- a/mpm/lib/dboards/CMakeLists.txt
+++ b/mpm/lib/dboards/CMakeLists.txt
@@ -8,7 +8,8 @@
# This file included, use CMake directory variables
########################################################################
-USRP_PERIPHS_ADD_OBJECT(dboards
- magnesium_manager.cpp
-)
-
+if(MPM_DEVICE STREQUAL "n3xx")
+ USRP_PERIPHS_ADD_OBJECT(dboards
+ magnesium_manager.cpp
+ )
+endif(MPM_DEVICE STREQUAL "n3xx")