2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
2017-02-08 23:07:44 +00:00
|
|
|
env.editor_sources = []
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-12-16 11:12:22 +00:00
|
|
|
import os
|
2018-03-10 17:37:33 +00:00
|
|
|
import os.path
|
2018-03-17 22:23:55 +00:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
from compat import open_utf8
|
|
|
|
import editor_builders
|
2017-02-08 23:07:44 +00:00
|
|
|
|
2018-03-10 17:37:33 +00:00
|
|
|
|
2017-09-12 20:42:36 +00:00
|
|
|
def _make_doc_data_class_path(to_path):
|
2018-03-17 22:23:55 +00:00
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
|
|
|
g = open_utf8(os.path.join(to_path, "doc_data_class_path.gen.h"), "w")
|
2018-03-10 17:37:33 +00:00
|
|
|
g.write("static const int _doc_data_class_path_count = " + str(len(env.doc_class_path)) + ";\n")
|
|
|
|
g.write("struct _DocDataClassPath { const char* name; const char* path; };\n")
|
|
|
|
|
|
|
|
g.write("static const _DocDataClassPath _doc_data_class_paths[" + str(len(env.doc_class_path) + 1) + "] = {\n");
|
|
|
|
for c in sorted(env.doc_class_path):
|
|
|
|
g.write("\t{\"" + c + "\", \"" + env.doc_class_path[c] + "\"},\n")
|
|
|
|
g.write("\t{NULL, NULL}\n")
|
|
|
|
g.write("};\n")
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2018-03-10 17:37:33 +00:00
|
|
|
g.close()
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-25 04:04:49 +00:00
|
|
|
if env['tools']:
|
2017-02-08 23:07:44 +00:00
|
|
|
# Register exporters
|
2016-10-30 17:57:40 +00:00
|
|
|
reg_exporters_inc = '#include "register_exporters.h"\n'
|
|
|
|
reg_exporters = 'void register_exporters() {\n'
|
2016-10-30 17:44:57 +00:00
|
|
|
for e in env.platform_exporters:
|
2017-02-08 23:07:44 +00:00
|
|
|
env.editor_sources.append("#platform/" + e + "/export/export.cpp")
|
2017-08-26 18:47:23 +00:00
|
|
|
reg_exporters += '\tregister_' + e + '_exporter();\n'
|
2016-10-30 17:57:40 +00:00
|
|
|
reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
|
|
|
|
reg_exporters += '}\n'
|
2018-03-17 22:23:55 +00:00
|
|
|
|
|
|
|
# NOTE: It is safe to generate this file here, since this is still executed serially
|
2018-03-10 17:37:33 +00:00
|
|
|
with open_utf8("register_exporters.gen.cpp", "w") as f:
|
|
|
|
f.write(reg_exporters_inc)
|
|
|
|
f.write(reg_exporters)
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
# API documentation
|
2017-10-21 17:31:23 +00:00
|
|
|
docs = []
|
2017-11-16 17:53:54 +00:00
|
|
|
doc_dirs = ["doc/classes"]
|
|
|
|
|
|
|
|
for p in env.doc_class_path.values():
|
|
|
|
if p not in doc_dirs:
|
|
|
|
doc_dirs.append(p)
|
|
|
|
|
|
|
|
for d in doc_dirs:
|
|
|
|
try:
|
|
|
|
for f in os.listdir(os.path.join(env.Dir('#').abspath, d)):
|
|
|
|
docs.append("#" + os.path.join(d, f))
|
|
|
|
except OSError:
|
|
|
|
pass
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2017-10-21 17:31:23 +00:00
|
|
|
_make_doc_data_class_path(os.path.join(env.Dir('#').abspath, "editor/doc"))
|
2017-09-12 20:42:36 +00:00
|
|
|
|
2017-11-15 19:16:51 +00:00
|
|
|
docs = sorted(docs)
|
2017-06-23 15:03:41 +00:00
|
|
|
env.Depends("#editor/doc_data_compressed.gen.h", docs)
|
2018-03-17 22:23:55 +00:00
|
|
|
env.CommandNoCache("#editor/doc_data_compressed.gen.h", docs, run_in_subprocess(editor_builders.make_doc_header))
|
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
# Certificates
|
2017-06-23 15:03:41 +00:00
|
|
|
env.Depends("#editor/certs_compressed.gen.h", "#thirdparty/certs/ca-certificates.crt")
|
2018-03-17 22:23:55 +00:00
|
|
|
env.CommandNoCache("#editor/certs_compressed.gen.h", "#thirdparty/certs/ca-certificates.crt", run_in_subprocess(editor_builders.make_certs_header))
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
import glob
|
2018-03-17 22:23:55 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
path = env.Dir('.').abspath
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
# Translations
|
|
|
|
tlist = glob.glob(path + "/translations/*.po")
|
2017-06-23 15:03:41 +00:00
|
|
|
env.Depends('#editor/translations.gen.h', tlist)
|
2018-03-17 22:23:55 +00:00
|
|
|
env.CommandNoCache('#editor/translations.gen.h', tlist, run_in_subprocess(editor_builders.make_translations_header))
|
2016-10-30 17:44:57 +00:00
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
# Fonts
|
2017-03-05 13:21:25 +00:00
|
|
|
flist = glob.glob(path + "/../thirdparty/fonts/*.ttf")
|
|
|
|
flist.append(glob.glob(path + "/../thirdparty/fonts/*.otf"))
|
2017-06-23 15:03:41 +00:00
|
|
|
env.Depends('#editor/builtin_fonts.gen.h', flist)
|
2018-03-17 22:23:55 +00:00
|
|
|
env.CommandNoCache('#editor/builtin_fonts.gen.h', flist, run_in_subprocess(editor_builders.make_fonts_header))
|
|
|
|
|
|
|
|
# Authors
|
|
|
|
env.Depends('#editor/authors.gen.h', "../AUTHORS.md")
|
|
|
|
env.CommandNoCache('#editor/authors.gen.h', "../AUTHORS.md", run_in_subprocess(editor_builders.make_authors_header))
|
|
|
|
|
|
|
|
# Donors
|
|
|
|
env.Depends('#editor/donors.gen.h', "../DONORS.md")
|
|
|
|
env.CommandNoCache('#editor/donors.gen.h', "../DONORS.md", run_in_subprocess(editor_builders.make_donors_header))
|
|
|
|
|
|
|
|
# License
|
|
|
|
env.Depends('#editor/license.gen.h', ["../COPYRIGHT.txt", "../LICENSE.txt"])
|
|
|
|
env.CommandNoCache('#editor/license.gen.h', ["../COPYRIGHT.txt", "../LICENSE.txt"], run_in_subprocess(editor_builders.make_license_header))
|
2017-02-08 23:07:44 +00:00
|
|
|
|
|
|
|
env.add_source_files(env.editor_sources, "*.cpp")
|
2018-03-06 20:50:35 +00:00
|
|
|
env.add_source_files(env.editor_sources, ["#thirdparty/misc/clipper.cpp"])
|
2017-02-08 23:07:44 +00:00
|
|
|
|
|
|
|
SConscript('collada/SCsub')
|
|
|
|
SConscript('doc/SCsub')
|
2016-10-31 23:24:30 +00:00
|
|
|
SConscript('fileserver/SCsub')
|
2017-02-08 23:07:44 +00:00
|
|
|
SConscript('icons/SCsub')
|
2017-02-01 12:45:45 +00:00
|
|
|
SConscript('import/SCsub')
|
2017-02-08 23:07:44 +00:00
|
|
|
SConscript('plugins/SCsub')
|
|
|
|
|
2017-11-28 20:27:57 +00:00
|
|
|
lib = env.add_library("editor", env.editor_sources)
|
2017-02-08 23:07:44 +00:00
|
|
|
env.Prepend(LIBS=[lib])
|
|
|
|
|
|
|
|
Export('env')
|