builder.py: Accept C++ source files

This commit is contained in:
Sebastian Huber 2019-02-18 10:01:09 +01:00
parent 3017f66a36
commit 44c5fe27d6

View File

@ -209,8 +209,8 @@ def assertHeaderFile(path):
sys.exit(2) sys.exit(2)
def assertSourceFile(path): def assertSourceFile(path):
if path[-2] != '.' or (path[-1] != 'c' and path[-1] != 'S'): if path[-2:] != '.c' and path[-2:] != '.S' and path[-3:] != '.cc':
print("*** " + path + " does not end in .c or .S") print("*** " + path + " does not end in .c, .cc or .S")
print("*** Move it to a header file list") print("*** Move it to a header file list")
sys.exit(2) sys.exit(2)