diff options
| author | Josh Blum <josh@joshknows.com> | 2010-02-25 17:44:12 +0000 |
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2010-02-25 17:44:12 +0000 |
| commit | c95a158548e93d1ea37061e0b937e78ab0486b57 (patch) | |
| tree | 50531279c454f3b2d07e52dd8eb2562b7fabbbc7 /host/lib/CMakeLists.txt | |
| parent | 3cd7bc9be6420623eb7803e490b39ecc75d83ed9 (diff) | |
| parent | 5715b2c4937ca094ca8f1d9d9b55c4edcc959981 (diff) | |
| download | uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.tar.gz uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.tar.bz2 uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.zip | |
Merge branch 'master' into u1e_uhd
Diffstat (limited to 'host/lib/CMakeLists.txt')
| -rw-r--r-- | host/lib/CMakeLists.txt | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/host/lib/CMakeLists.txt b/host/lib/CMakeLists.txt index 5cf334678..edfefa127 100644 --- a/host/lib/CMakeLists.txt +++ b/host/lib/CMakeLists.txt @@ -15,12 +15,13 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # - +######################################################################## +# Create a list of libuhd sources +######################################################################## SET(libuhd_sources device.cpp device_addr.cpp gain_handler.cpp - shared_iovec.cpp uhd.cpp wax.cpp transport/udp.cpp @@ -32,10 +33,21 @@ SET(libuhd_sources usrp/usrp2/dboard_impl.cpp usrp/usrp2/dboard_interface.cpp usrp/usrp2/dsp_impl.cpp + usrp/usrp2/io_impl.cpp usrp/usrp2/mboard_impl.cpp usrp/usrp2/usrp2_impl.cpp ) +######################################################################## +# Conditionally add the usrp1e sources +######################################################################## +LIST(APPEND libuhd_sources + usrp/usrp1e/usrp1e_none.cpp +) + +######################################################################## +# Setup libuhd library +######################################################################## ADD_LIBRARY(uhd SHARED ${libuhd_sources}) TARGET_LINK_LIBRARIES(uhd ${Boost_LIBRARIES}) |
