aboutsummaryrefslogtreecommitdiffstats
path: root/host/cmake/Modules/UHDConfig.cmake.in
Commit message (Collapse)AuthorAgeFilesLines
* cmake: fix finding PkgConfig to work robustly (without CMake warnings)Michael Dickens2021-07-061-1/+1
|
* cmake: add UHDBoost.cmake and use it for building UHDMichael Dickens2019-10-151-1/+3
| | | | | | | | | Also install UHDBoost.cmake along with the CMake UHD find scripts, so that it can be used by external modules. Tweak the UHDConfig.cmake script so that, once installed, the new UHDBoost.cmake script is found. Note that the project using UHD must first find UHD before trying to find Boost. Also note that if the C++ standard is not set before UHDBoost is loaded, it will be set to that currently used by UHD: C++14.
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-48/+48
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* uhd: Update license headersMartin Braun2018-02-191-1/+2
| | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
* Move all license headers to SPDX format.Martin Braun2017-12-221-12/+1
|
* cmake: Conditionally set UHD_RFNOC_FOUND depending on ENABLE_RFNOCMartin Braun2016-08-101-1/+1
|
* Merging RFNoC support for X310Martin Braun2016-08-091-0/+1
|
* cmake: Added ENABLE_STATIC_LIBS optionMartin Braun2015-01-191-0/+118
- Allows building static libraries - For users calling find_package(UHD), provides extra options for building apps statically linking UHD. - Updated the init_usrp example to link UHD statically.