diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 13:45:56 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 13:45:56 +0200 |
commit | 21e53c42672e46c74bce6246fde16f4200c48163 (patch) | |
tree | de309171578336c21a92377e925c89bd435b4e64 | |
parent | 3acf6857d91044793a3c8865661d33954f77e7a7 (diff) |
Buildsystem: Reduce verbosity of font and translation generation
-rw-r--r-- | editor/SCsub | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/SCsub b/editor/SCsub index fd56c9d772..a92983851c 100644 --- a/editor/SCsub +++ b/editor/SCsub @@ -75,7 +75,6 @@ def make_fonts_header(target, source, env): # saving uncompressed, since freetype will reference from memory pointer xl_names = [] for i in range(len(source)): - print("Appending font: " + source[i].srcnode().abspath) f = open(source[i].srcnode().abspath, "rb") buf = f.read() import os.path @@ -110,7 +109,6 @@ def make_translations_header(target, source, env): xl_names = [] for i in range(len(sorted_paths)): - print("Appending translation: " + sorted_paths[i]) f = open(sorted_paths[i], "rb") buf = f.read() decomp_size = len(buf) @@ -381,14 +379,12 @@ if (env["tools"] == "yes"): # Translations tlist = glob.glob(path + "/translations/*.po") - print("translations: ", tlist) env.Depends('#editor/translations.gen.h', tlist) env.Command('#editor/translations.gen.h', tlist, make_translations_header) # Fonts flist = glob.glob(path + "/../thirdparty/fonts/*.ttf") flist.append(glob.glob(path + "/../thirdparty/fonts/*.otf")) - print("fonts: ", flist) env.Depends('#editor/builtin_fonts.gen.h', flist) env.Command('#editor/builtin_fonts.gen.h', flist, make_fonts_header) |