diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-18 15:30:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-18 15:30:34 -0800 |
commit | b4e5df4080b276ff1bf7cf896bd60630cdaab652 (patch) | |
tree | e95043c7812fb5113cfd44f97b69f0100ac29cec /host/lib/CMakeLists.txt | |
parent | f439fe8218b05a67148332ffefd2053ba3c0c19d (diff) | |
download | uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.tar.gz uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.tar.bz2 uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.zip |
Flattened the usrp2 impl properties guts.
Created init methods for various sub-parts.
Added the ddc control (still needs update transaction).
Diffstat (limited to 'host/lib/CMakeLists.txt')
-rw-r--r-- | host/lib/CMakeLists.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/host/lib/CMakeLists.txt b/host/lib/CMakeLists.txt index f114310e6..94dffa113 100644 --- a/host/lib/CMakeLists.txt +++ b/host/lib/CMakeLists.txt @@ -16,7 +16,7 @@ # -ADD_LIBRARY(uhd SHARED +SET(libuhd_sources device.cpp device_addr.cpp gain_handler.cpp @@ -32,11 +32,15 @@ ADD_LIBRARY(uhd SHARED usrp/dboard/manager.cpp usrp/mboard/base.cpp usrp/mboard/usrp2.cpp - usrp/mboard/usrp2/impl_base.cpp usrp/mboard/usrp2/dboard_impl.cpp usrp/mboard/usrp2/dboard_interface.cpp + usrp/mboard/usrp2/dsp_impl.cpp + usrp/mboard/usrp2/mboard_impl.cpp + usrp/mboard/usrp2/usrp2_impl.cpp ) +ADD_LIBRARY(uhd SHARED ${libuhd_sources}) + TARGET_LINK_LIBRARIES(uhd ${Boost_LIBRARIES}) INSTALL(TARGETS uhd LIBRARY DESTINATION ${LIBRARY_DIR}) |