diff options
Diffstat (limited to 'BuildTools/SCons/Tools/SLOCCount.py')
-rw-r--r-- | BuildTools/SCons/Tools/SLOCCount.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/BuildTools/SCons/Tools/SLOCCount.py b/BuildTools/SCons/Tools/SLOCCount.py new file mode 100644 index 0000000..fd09abe --- /dev/null +++ b/BuildTools/SCons/Tools/SLOCCount.py @@ -0,0 +1,17 @@ +import SCons.Util, os.path, os + +def generate(env) : + def createSLOCCount(env, source) : + myenv = env.Clone() + myenv["ENV"]["HOME"] = os.environ["HOME"] + source = myenv.Dir(source) + target = myenv.File("#/" + source.path + ".sloccount") + # FIXME: There's probably a better way to force building the .sc + if os.path.exists(target.abspath) : + os.unlink(target.abspath) + return myenv.Command(target, source, [SCons.Action.Action("sloccount --duplicates --wide --details " + source.path + " > $TARGET", cmdstr = "$GENCOMSTR")]) + + env.AddMethod(createSLOCCount, "SLOCCount") + +def exists(env) : + return True |