2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
2018-09-28 11:29:52 +00:00
|
|
|
|
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
|
2020-04-04 11:46:15 +00:00
|
|
|
import glob
|
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:
|
2019-07-22 11:57:39 +00:00
|
|
|
env.add_source_files(env.editor_sources, "#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
|
|
|
|
2020-04-04 11:46:15 +00:00
|
|
|
# Core API documentation.
|
2017-10-21 17:31:23 +00:00
|
|
|
docs = []
|
2020-04-04 11:46:15 +00:00
|
|
|
docs += Glob("#doc/classes/*.xml")
|
2017-11-16 17:53:54 +00:00
|
|
|
|
2020-04-04 11:46:15 +00:00
|
|
|
# Module API documentation.
|
|
|
|
module_dirs = []
|
|
|
|
for d in env.doc_class_path.values():
|
|
|
|
if d not in module_dirs:
|
|
|
|
module_dirs.append(d)
|
2017-11-16 17:53:54 +00:00
|
|
|
|
2020-04-04 11:46:15 +00:00
|
|
|
for d in module_dirs:
|
|
|
|
if not os.path.isabs(d):
|
|
|
|
docs += Glob("#" + d + "/*.xml") # Built-in.
|
|
|
|
else:
|
|
|
|
docs += Glob(d + "/*.xml") # Custom.
|
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))
|
|
|
|
|
2020-04-04 11:46:15 +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")
|
2018-08-28 18:38:47 +00:00
|
|
|
flist.extend(glob.glob(path + "/../thirdparty/fonts/*.otf"))
|
2018-08-28 18:40:51 +00:00
|
|
|
flist.sort()
|
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))
|
|
|
|
|
2017-02-08 23:07:44 +00:00
|
|
|
env.add_source_files(env.editor_sources, "*.cpp")
|
|
|
|
|
|
|
|
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])
|