summaryrefslogtreecommitdiff
path: root/tools/make_cmakelists.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make_cmakelists.py')
-rwxr-xr-xtools/make_cmakelists.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/make_cmakelists.py b/tools/make_cmakelists.py
index 22f3757..a4923c8 100755
--- a/tools/make_cmakelists.py
+++ b/tools/make_cmakelists.py
@@ -48,7 +48,7 @@ class BuildFileFunctions(object):
else:
print("Warning: no such file: " + file)
- if filter(IsSourceFile, files):
+ if list(filter(IsSourceFile, files)):
# Has sources, make this a normal library.
self.converter.toplevel += "add_library(%s\n %s)\n" % (
kwargs["name"],
@@ -272,8 +272,8 @@ def GetDict(obj):
globs = GetDict(converter)
-execfile("WORKSPACE", GetDict(WorkspaceFileFunctions(converter)))
-execfile("BUILD", GetDict(BuildFileFunctions(converter)))
+exec(open("WORKSPACE").read(), GetDict(WorkspaceFileFunctions(converter)))
+exec(open("BUILD").read(), GetDict(BuildFileFunctions(converter)))
with open(sys.argv[1], "w") as f:
f.write(converter.convert())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback