From d2770ac8a669f567cf34b73c35734c4e9175647b Mon Sep 17 00:00:00 2001 From: marynate Date: Wed, 14 May 2014 10:47:17 +0800 Subject: Add sCons dependency for editor_icons.cpp, so it's only re-generated when there're icon changes --- tools/editor/icons/SCsub | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'tools/editor/icons/SCsub') diff --git a/tools/editor/icons/SCsub b/tools/editor/icons/SCsub index edc4cc56ff..a7e550feac 100644 --- a/tools/editor/icons/SCsub +++ b/tools/editor/icons/SCsub @@ -1,18 +1,21 @@ Import('env') -def make_editor_icons(): +def make_editor_icons_action(target, source, env): - import glob - - pixmaps = glob.glob("*.png") + import os + + dst = target[0].srcnode().abspath + pixmaps = source - f = open("../editor_icons.cpp","wb") + f = open(dst,"wb") f.write("#include \"editor_icons.h\"\n\n") f.write("#include \"scene/resources/theme.h\"\n\n") for x in pixmaps: - - var_str=x[:-4]+"_png"; + + x=str(x) + var_str=os.path.basename(x)[:-4]+"_png"; + #print(var_str) f.write("static const unsigned char "+ var_str +"[]={\n"); @@ -37,7 +40,8 @@ def make_editor_icons(): f.write("void editor_register_icons(Ref p_theme) {\n\n") for x in pixmaps: - + + x=os.path.basename(str(x)) type=x[5:-4].title().replace("_",""); var_str=x[:-4]+"_png"; f.write("\tp_theme->set_icon(\""+type+"\",\"EditorIcons\",make_icon("+var_str+"));\n"); @@ -45,4 +49,12 @@ def make_editor_icons(): f.write("\n\n}\n\n"); f.close() -make_editor_icons() +make_editor_icons_builder = Builder(action=make_editor_icons_action, + suffix = '.cpp', + src_suffix = '.png') +env['BUILDERS']['MakeEditorIconsBuilder']=make_editor_icons_builder +env.Alias('editor_icons',[env.MakeEditorIconsBuilder('#tools/editor/editor_icons.cpp',Glob("*.png"))]) + +env.tool_sources.append("#tools/editor/editor_icons.cpp") +Export('env') + -- cgit v1.2.3