1e559d19c3
- Added a new target "clangformat" which formats the code using the clang-format tool found in HCC package. - Renamed target "static_check" to "cppcheck". - Use find_program() macro to make the build system more robust. Change-Id: Ifefbf36f23ff7ef27a870120d5b9170d0cc8aa52
21 lines
421 B
YAML
21 lines
421 B
YAML
---
|
|
Language: Cpp
|
|
BasedOnStyle: Google
|
|
AlignEscapedNewlinesLeft: false
|
|
ColumnLimit: 100
|
|
DerivePointerAlignment: false
|
|
IndentWrappedFunctionNames: false
|
|
MaxEmptyLinesToKeep: 2
|
|
SortIncludes: false
|
|
IndentWidth: 4
|
|
---
|
|
Language: ObjC
|
|
BasedOnStyle: Google
|
|
AlignEscapedNewlinesLeft: false
|
|
ColumnLimit: 100
|
|
DerivePointerAlignment: false
|
|
IndentWrappedFunctionNames: false
|
|
MaxEmptyLinesToKeep: 2
|
|
SortIncludes: false
|
|
IndentWidth: 4
|