diff options
author | Alex Williams <alex.williams@ni.com> | 2018-04-17 10:36:59 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-04-18 15:34:51 -0700 |
commit | 7dcd16f5a6980cb1183bf1a10812c952d92c4ddb (patch) | |
tree | d1eaa9bdca563fe1f17886d771e16ff65ed153c7 /mpm/lib | |
parent | e733e590c4b5aa3053af0681bef199d27e4b2d7a (diff) | |
download | uhd-7dcd16f5a6980cb1183bf1a10812c952d92c4ddb.tar.gz uhd-7dcd16f5a6980cb1183bf1a10812c952d92c4ddb.tar.bz2 uhd-7dcd16f5a6980cb1183bf1a10812c952d92c4ddb.zip |
mpm: Use configurable components for build system
For a minimal build, default to off for components unless the MPM_DEVICE
or the user requests it specifically.
Diffstat (limited to 'mpm/lib')
-rw-r--r-- | mpm/lib/CMakeLists.txt | 4 | ||||
-rw-r--r-- | mpm/lib/dboards/CMakeLists.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mpm/lib/CMakeLists.txt b/mpm/lib/CMakeLists.txt index 091c2c25f..cf252f6e6 100644 --- a/mpm/lib/CMakeLists.txt +++ b/mpm/lib/CMakeLists.txt @@ -11,9 +11,9 @@ ADD_SUBDIRECTORY(chips) ADD_SUBDIRECTORY(spi) ADD_SUBDIRECTORY(types) -if(MPM_DEVICE STREQUAL "n3xx") +if(ENABLE_MYKONOS) ADD_SUBDIRECTORY(mykonos) -endif(MPM_DEVICE STREQUAL "n3xx") +endif(ENABLE_MYKONOS) USRP_PERIPHS_ADD_OBJECT(periphs exception.cpp diff --git a/mpm/lib/dboards/CMakeLists.txt b/mpm/lib/dboards/CMakeLists.txt index a1017d8d3..7af3f98b7 100644 --- a/mpm/lib/dboards/CMakeLists.txt +++ b/mpm/lib/dboards/CMakeLists.txt @@ -8,8 +8,8 @@ # This file included, use CMake directory variables ######################################################################## -if(MPM_DEVICE STREQUAL "n3xx") +if(ENABLE_MAGNESIUM) USRP_PERIPHS_ADD_OBJECT(dboards magnesium_manager.cpp ) -endif(MPM_DEVICE STREQUAL "n3xx") +endif(ENABLE_MAGNESIUM) |