# HG changeset patch # User tomwalters # Date 1266589172 0 # Node ID ba2f7596d1a214b0ae47f613e68368dbc67ff4c4 # Parent 88fe02836a6bfdaca6b5a7ec6b6c2ef0d751443f -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 88fe02836a6b -r ba2f7596d1a2 build_python_module.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/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 88fe02836a6b -r ba2f7596d1a2 lint_all.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/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 +