2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
2014-02-16 01:16:33 +01:00
|
|
|
|
|
|
|
def make_doc_header(target,source,env):
|
|
|
|
|
|
|
|
src = source[0].srcnode().abspath
|
|
|
|
dst = target[0].srcnode().abspath
|
|
|
|
f = open(src,"rb")
|
|
|
|
g = open(dst,"wb")
|
|
|
|
buf = f.read()
|
|
|
|
decomp_size = len(buf)
|
|
|
|
import zlib
|
|
|
|
buf = zlib.compress(buf)
|
|
|
|
|
|
|
|
|
|
|
|
g.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
|
|
|
|
g.write("#ifndef _DOC_DATA_RAW_H\n")
|
|
|
|
g.write("#define _DOC_DATA_RAW_H\n")
|
|
|
|
g.write("static const int _doc_data_compressed_size="+str(len(buf))+";\n")
|
|
|
|
g.write("static const int _doc_data_uncompressed_size="+str(decomp_size)+";\n")
|
|
|
|
g.write("static const unsigned char _doc_data_compressed[]={\n")
|
|
|
|
for i in range(len(buf)):
|
|
|
|
g.write(str(ord(buf[i]))+",\n")
|
|
|
|
g.write("};\n")
|
|
|
|
g.write("#endif")
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-12 14:44:12 +01:00
|
|
|
def make_certs_header(target,source,env):
|
|
|
|
|
|
|
|
src = source[0].srcnode().abspath
|
|
|
|
dst = target[0].srcnode().abspath
|
|
|
|
f = open(src,"rb")
|
|
|
|
g = open(dst,"wb")
|
|
|
|
buf = f.read()
|
|
|
|
decomp_size = len(buf)
|
|
|
|
import zlib
|
|
|
|
buf = zlib.compress(buf)
|
|
|
|
|
|
|
|
|
|
|
|
g.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
|
|
|
|
g.write("#ifndef _CERTS_RAW_H\n")
|
|
|
|
g.write("#define _CERTS_RAW_H\n")
|
|
|
|
g.write("static const int _certs_compressed_size="+str(len(buf))+";\n")
|
|
|
|
g.write("static const int _certs_uncompressed_size="+str(decomp_size)+";\n")
|
|
|
|
g.write("static const unsigned char _certs_compressed[]={\n")
|
|
|
|
for i in range(len(buf)):
|
|
|
|
g.write(str(ord(buf[i]))+",\n")
|
|
|
|
g.write("};\n")
|
|
|
|
g.write("#endif")
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-16 01:16:33 +01:00
|
|
|
|
|
|
|
|
2015-11-01 20:53:26 +01:00
|
|
|
|
2014-02-16 01:16:33 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (env["tools"]=="yes"):
|
|
|
|
|
|
|
|
reg_exporters_inc='#include "register_exporters.h"\n'
|
|
|
|
reg_exporters='void register_exporters() {\n'
|
|
|
|
for e in env.platform_exporters:
|
|
|
|
env.tool_sources.append("#platform/"+e+"/export/export.cpp")
|
|
|
|
reg_exporters+='\tregister_'+e+'_exporter();\n'
|
|
|
|
reg_exporters_inc+='#include "platform/'+e+'/export/export.h"\n'
|
|
|
|
reg_exporters+='}\n'
|
|
|
|
f = open("register_exporters.cpp","wb")
|
|
|
|
f.write(reg_exporters_inc)
|
|
|
|
f.write(reg_exporters)
|
2014-02-16 08:54:09 +01:00
|
|
|
f.close()
|
2015-11-01 20:53:26 +01:00
|
|
|
|
2014-02-16 01:16:33 +01:00
|
|
|
env.Depends("#tools/editor/doc_data_compressed.h","#doc/base/classes.xml")
|
|
|
|
env.Command("#tools/editor/doc_data_compressed.h","#doc/base/classes.xml",make_doc_header)
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-03-12 14:44:12 +01:00
|
|
|
env.Depends("#tools/editor/certs_compressed.h","#tools/certs/ca-certificates.crt")
|
|
|
|
env.Command("#tools/editor/certs_compressed.h","#tools/certs/ca-certificates.crt",make_certs_header)
|
|
|
|
|
2014-02-16 01:16:33 +01:00
|
|
|
#make_doc_header(env.File("#tools/editor/doc_data_raw.h").srcnode().abspath,env.File("#doc/base/classes.xml").srcnode().abspath,env)
|
2015-11-01 20:53:26 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
env.add_source_files(env.tool_sources,"*.cpp")
|
2015-11-01 20:53:26 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Export('env')
|
2015-11-01 20:53:26 +01:00
|
|
|
SConscript('icons/SCsub');
|
2014-02-10 02:10:30 +01:00
|
|
|
SConscript('plugins/SCsub');
|
|
|
|
SConscript('fileserver/SCsub');
|
|
|
|
SConscript('io_plugins/SCsub');
|