Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmake: UHDLog: Use STRING over FILE for the log file | Michael Dickens | 2019-07-24 | 1 | -1/+1 |
| | | | | | This is because FILE is not actually a type, and we don't care about an existing file either. It's just a setting for the build. | ||||
* | cmake: Update coding style to use lowercase commands | Martin Braun | 2018-11-14 | 1 | -57/+57 |
| | | | | | | | | | | | | | | | | | 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!) | ||||
* | utils: add coloring depending on loglevel to console output | Andrej Rode | 2017-04-07 | 1 | -0/+10 |
| | |||||
* | utils: add cmake switch to disable fastpath logging | Andrej Rode | 2017-04-06 | 1 | -0/+5 |
| | |||||
* | utils: introduce new logging API and remove msg API | Andrej Rode | 2017-02-20 | 1 | -0/+57 |