Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revise include order using clang-format-6.0 | Kitware Robot | 2019-10-01 | 1 | -6/+7 |
| | | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0. | ||||
* | Source sweep: Replace cmExpandList with the shorter cmExpandedList | Sebastian Holtermann | 2019-08-23 | 1 | -2/+1 |
| | | | | | | | | | | | | This replaces the code pattern ``` std::vector<std::string> args; cmExpandList(valueStr, args, ...) ``` with ``` std::vector<std::string> args = cmExpandedList(valueStr, ...) ``` | ||||
* | Source code: Use cmExpandList instead of cmSystemTools::ExpandListArgument | Sebastian Holtermann | 2019-08-14 | 1 | -1/+2 |
| | |||||
* | file: Add GET_RUNTIME_DEPENDENCIES mode | Kyle Edwards | 2019-06-10 | 1 | -0/+70 |
Co-Authored-by: Bryon Bean <bryon.bean@kitware.com> |