This commit is contained in:
GreYFoXGTi 2010-12-11 21:36:00 +02:00
commit 91bba50056

View file

@ -1,4 +1,7 @@
import sys, os
import os, re, sys
match = re.search("(.*?)/[^/]*?$", sys.argv[0])
if match != None:
os.chdir(os.getcwd() + "/" + match.group(1))
source_exts = [".c", ".cpp", ".h"]