summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-09-12 10:19:33 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-09-12 10:21:13 (GMT)
commitcc4ce85b1d5a4d0fe47690c2aa0748cc964a6cae (patch)
tree976cacfdd06542a24f22f891e950374ef7508025
parent6fc3f55d26748c277ce5f90d2d1cf89ed777a46e (diff)
downloadswift-cc4ce85b1d5a4d0fe47690c2aa0748cc964a6cae.zip
swift-cc4ce85b1d5a4d0fe47690c2aa0748cc964a6cae.tar.bz2
Added SLOCCount to scons.
-rw-r--r--.gitignore1
-rw-r--r--BuildTools/SCons/SConstruct6
-rw-r--r--BuildTools/SCons/Tools/SLOCCount.py17
3 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e9b5482..6ea93ba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
.DS_Store
*.pyc
+*.sloccount
*.gcov
*.gcda
*.gcno
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct
index feb50d0..a67817a 100644
--- a/BuildTools/SCons/SConstruct
+++ b/BuildTools/SCons/SConstruct
@@ -62,6 +62,7 @@ if env["PLATFORM"] == "win32" :
#So we don't need to escalate with UAC
if "TMP" is os.environ.keys() :
env['ENV']['TMP'] = os.environ['TMP']
+env.Tool("SLOCCount", toolpath = ["#/BuildTools/SCons/Tools"])
# Override SConscript to handle tests
oldSConscript = SConscript
@@ -497,6 +498,11 @@ for stage in ["flags", "build", "test"] :
env["SCONS_STAGE"] = stage
SConscript(dirs = map(lambda x : "#/" + x, modules))
+# SLOCCount
+if ARGUMENTS.get("sloccount", False) :
+ for project in env["PROJECTS"] :
+ env.SLOCCount("#/" + project)
+
################################################################################
# Print summary
################################################################################
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