aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/init_usrp/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-24/+24
| | | | | | | | | | | | | | | | | 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-0/+1
| | | | | | | 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
|
* init_usrp: add c++11 flags to compiler if availableAndrej Rode2017-02-101-0/+19
|
* cmake: Fix compatibility with new versioning schemeNicolas Cuervo2016-08-011-1/+1
| | | | - Fixes init_usrp
* examples: Updated init_usrp example on note about CMake flagsMartin Braun2015-06-091-0/+8
|
* cmake: Added ENABLE_STATIC_LIBS optionMartin Braun2015-01-191-4/+28
| | | | | | | - 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.
* examples: Fixed init_usrp for building with MSVCMartin Braun2015-01-121-0/+9
|
* examples: Also bumped min Boost version in init_usrp exampleMartin Braun2014-10-251-1/+1
|
* uhd: Added an example for CMake usageMartin Braun2014-09-251-0/+46