# HG changeset patch # User tomwalters # Date 1266589172 0 # Node ID 2eb392a596213a942bf85cbcc58eaad9be559c50 # Parent 3ef86b0f82024050e015108881f705a8f9bb6157 -Added a couple of scripts to run cpplint.py on everything (apart from 3rd party imports) and to build and install the python module diff -r 3ef86b0f8202 -r 2eb392a59621 trunk/build_python_module.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trunk/build_python_module.sh Fri Feb 19 14:19:32 2010 +0000 @@ -0,0 +1,5 @@ +#!/bin/bash +cd swig +python setup.py "build_ext" +python setup.py install +cd .. diff -r 3ef86b0f8202 -r 2eb392a59621 trunk/lint_all.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trunk/lint_all.sh Fri Feb 19 14:19:32 2010 +0000 @@ -0,0 +1,3 @@ +#!/bin/bash +find -E . -iregex ".*\.(h|cc|c)" | grep -v "ConvertUTF" | grep -v "SimpleIni" | xargs lint/cpplint.py +