Updates module building script to delete the old results first

This commit is contained in:
Alexander Bock
2015-05-27 11:20:37 +02:00
parent 5ab855b563
commit 6107d0c6d0

View File

@@ -24,6 +24,9 @@ for s in settings:
# Build cmake and compile
for c in cmds:
print "CMake:" , cmd
call["rm", "-rf", "build", "bin"]
call["mkdir", "build"]
call["cd", "build"]
call(cmd)
call(["make", "-j4"])
call["cd", ".."]