aboutsummaryrefslogtreecommitdiffstats
path: root/host/cmake/Modules/UHDConfigVersion.cmake.in
Commit message (Collapse)AuthorAgeFilesLines
* cmake: quote the @UHD_VERSION@ replacement to allow any stringMichael Dickens2019-07-241-1/+1
|
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-70/+70
| | | | | | | | | | | | | | | | | 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: Change version numbering to remove leading zerosMartin Braun2016-10-311-6/+6
|
* cmake: Fix compatibility with new versioning schemeNicolas Cuervo2016-08-011-2/+3
| | | | - Fixes init_usrp
* cmake: Dev branches can get a named versionMartin Braun2015-01-281-0/+11
|
* cmake: set ENV variables to tell GR's FindUHD.cmake that these files were ↵Michael Dickens2014-09-251-0/+6
| | | | actually used; UHDConfig*.cmake are not always allowed to use CACHE variables, thus the use of ENV.
* cmake: Add in UHDConfig*.cmake files and install them into CMAKE_MODULES_DIR ↵Michael Dickens2014-09-251-0/+160
if provided (default value is "lib${LIB_SUFFIX}/cmake/"). Tested to work with GR's new FindUHD.cmake (as a daisy-chained "find_package(UHD ...)") as well as directly.