Mercurial > hg > aimc
annotate trunk/lint_all.sh @ 289:6cf55200a199
-Added basic support for unit tests using gtest
-Updated lint scripts to exclude header guard problems
-Made everything lint-friendly
-Added a trivial script to build the Doxygen documentation
author | tomwalters |
---|---|
date | Sat, 20 Feb 2010 21:03:57 +0000 |
parents | 2eb392a59621 |
children |
rev | line source |
---|---|
tomwalters@286 | 1 #!/bin/bash |
tomwalters@289 | 2 find -E . -iregex ".*\.(h|cc|c)" | grep -v "ConvertUTF" | grep -v "SimpleIni" | xargs lint/cpplint.py --filter=-build/header_guard |
tomwalters@286 | 3 |