diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-10-21 13:46:34 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-10-28 17:23:25 -0400 |
commit | df767602ecd46f8357a26a8e6131d2abdb2821e0 (patch) | |
tree | 05bdb7fac2077bf4b753695d2d6fd9dbffc9b84a | |
parent | 041f44e809f39d0567f6f191284d555cd6d08de2 (diff) |
soapy: clean up includes
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
-rw-r--r-- | gr-soapy/lib/CMakeLists.txt | 2 | ||||
-rw-r--r-- | gr-soapy/lib/block_impl.cc | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gr-soapy/lib/CMakeLists.txt b/gr-soapy/lib/CMakeLists.txt index fd767ab43f..cefd8ac3a9 100644 --- a/gr-soapy/lib/CMakeLists.txt +++ b/gr-soapy/lib/CMakeLists.txt @@ -58,7 +58,7 @@ if(ENABLE_TESTING) list(APPEND test_soapy_sources) # Anything we need to link to for the unit tests go here - list(APPEND GR_TEST_TARGET_DEPS gnuradio-soapy ${Boost_LIBRARIES}) + list(APPEND GR_TEST_TARGET_DEPS gnuradio-soapy) if(NOT test_soapy_sources) MESSAGE(STATUS "No C++ unit tests... skipping") diff --git a/gr-soapy/lib/block_impl.cc b/gr-soapy/lib/block_impl.cc index 8ff2b98670..608082df64 100644 --- a/gr-soapy/lib/block_impl.cc +++ b/gr-soapy/lib/block_impl.cc @@ -16,7 +16,9 @@ #include <SoapySDR/Formats.h> #include <SoapySDR/Version.hpp> #include <boost/format.hpp> +#include <algorithm> #include <cmath> +#include <mutex> #include <numeric> namespace gr { |