diff options
author | Philip Balister <philip@opensdr.com> | 2010-08-19 16:25:03 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-08-19 16:25:03 +0000 |
commit | b0a2f23bb66fce362b70117efe7b4e967e891c14 (patch) | |
tree | d5df3483f2674b5cb2d468234e1c81b33eb4ef28 /host/examples/CMakeLists.txt | |
parent | 50b70be92442c05f8cebb63f51333dab2568ca71 (diff) | |
download | uhd-b0a2f23bb66fce362b70117efe7b4e967e891c14.tar.gz uhd-b0a2f23bb66fce362b70117efe7b4e967e891c14.tar.bz2 uhd-b0a2f23bb66fce362b70117efe7b4e967e891c14.zip |
Add program to transmit samples from a file.
Diffstat (limited to 'host/examples/CMakeLists.txt')
-rw-r--r-- | host/examples/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/host/examples/CMakeLists.txt b/host/examples/CMakeLists.txt index 70e74a9a8..cad01a7cc 100644 --- a/host/examples/CMakeLists.txt +++ b/host/examples/CMakeLists.txt @@ -31,10 +31,15 @@ TARGET_LINK_LIBRARIES(rx_to_file uhd) ADD_EXECUTABLE(tx_timed_samples tx_timed_samples.cpp) TARGET_LINK_LIBRARIES(tx_timed_samples uhd) +ADD_EXECUTABLE(tx_from_file tx_from_file.cpp) +TARGET_LINK_LIBRARIES(tx_from_file uhd) + INSTALL(TARGETS tx_continuous_samples benchmark_rx_rate rx_timed_samples tx_timed_samples + tx_from_file + rx_to_file RUNTIME DESTINATION ${PKG_DATA_DIR}/examples ) |