diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-03-19 14:14:44 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 11:49:08 -0800 |
commit | 9b0702c546d10530af34deb7ab25391b7a7db87e (patch) | |
tree | 07f3c924b57b1ab4179489274c6f7e95d8deea51 /host/examples | |
parent | 062b82f6fdab8540af854050a45c0ef8de0a15eb (diff) | |
download | uhd-9b0702c546d10530af34deb7ab25391b7a7db87e.tar.gz uhd-9b0702c546d10530af34deb7ab25391b7a7db87e.tar.bz2 uhd-9b0702c546d10530af34deb7ab25391b7a7db87e.zip |
cmake: Bump dependency versions for UHD 4.0.0.0
- Boost >= 1.58
- CMake >= 3.5.1
- gcc >= 5.4.0
- Clang >= 3.8, AppleClang >= 600
- Python >= 3.5 (Py2k no longer supported)
- Numpy >= 1.11
- C++14 for lib, include may now use C++11 constructs.
- Because there is no more code requiring C++03 syntax, we remove the
include-specific clang-format file
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/init_usrp/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/init_usrp/CMakeLists.txt b/host/examples/init_usrp/CMakeLists.txt index 40fcf9016..0a81d2d48 100644 --- a/host/examples/init_usrp/CMakeLists.txt +++ b/host/examples/init_usrp/CMakeLists.txt @@ -23,10 +23,10 @@ endif() option(UHD_USE_STATIC_LIBS OFF) # To add UHD as a dependency to this project, add a line such as this: -find_package(UHD 3.15.0 REQUIRED) +find_package(UHD 4.0.0 REQUIRED) # The version in ^^^^^ here is a minimum version. # To specify an exact version: -#find_package(UHD 3.15.0 EXACT REQUIRED) +#find_package(UHD 4.0.0 EXACT REQUIRED) # This example also requires Boost. # Set components here, then include UHDBoost to do the actual finding |