2017-04-03 16:11:38 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2017-04-03 16:11:38 +02:00
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
env_gdnative = env_modules.Clone()
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "gdnative.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "register_types.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "android/*.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "gdnative/*.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "nativescript/*.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "gdnative_library_singleton_editor.cpp")
|
|
|
|
env_gdnative.add_source_files(env.modules_sources, "gdnative_library_editor_plugin.cpp")
|
2017-09-03 12:40:41 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
env_gdnative.Prepend(CPPPATH=["#modules/gdnative/include/"])
|
2018-09-28 13:29:52 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Export("env_gdnative")
|
2017-04-03 16:11:38 +02:00
|
|
|
|
2018-06-26 20:26:51 +02:00
|
|
|
SConscript("net/SCsub")
|
2017-11-10 12:36:50 +01:00
|
|
|
SConscript("arvr/SCsub")
|
2017-10-08 23:47:38 +02:00
|
|
|
SConscript("pluginscript/SCsub")
|
2018-07-28 22:01:30 +02:00
|
|
|
SConscript("videodecoder/SCsub")
|
2017-10-07 15:51:17 +02:00
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
|
2021-02-24 09:56:40 +01:00
|
|
|
from methods import get_cmdline_bool
|
2018-03-17 23:23:55 +01:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import gdnative_builders
|
2017-10-03 05:23:05 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
_, gensource = env_gdnative.CommandNoCache(
|
|
|
|
["include/gdnative_api_struct.gen.h", "gdnative_api_struct.gen.cpp"],
|
|
|
|
"gdnative_api.json",
|
|
|
|
run_in_subprocess(gdnative_builders.build_gdnative_api_struct),
|
|
|
|
)
|
2018-09-28 13:29:52 +02:00
|
|
|
env_gdnative.add_source_files(env.modules_sources, [gensource])
|
2017-10-03 05:23:05 +02:00
|
|
|
|
2017-08-02 14:21:12 +02:00
|
|
|
env.use_ptrcall = True
|
2017-10-03 23:07:29 +02:00
|
|
|
|
|
|
|
|
2021-02-24 09:56:40 +01:00
|
|
|
if get_cmdline_bool("gdnative_wrapper", False):
|
2020-03-30 08:28:32 +02:00
|
|
|
(gensource,) = env_gdnative.CommandNoCache(
|
|
|
|
"gdnative_wrapper_code.gen.cpp",
|
|
|
|
"gdnative_api.json",
|
|
|
|
run_in_subprocess(gdnative_builders.build_gdnative_wrapper_code),
|
|
|
|
)
|
2017-10-03 23:07:29 +02:00
|
|
|
|
|
|
|
gd_wrapper_env = env.Clone()
|
2020-03-30 08:28:32 +02:00
|
|
|
gd_wrapper_env.Prepend(CPPPATH=["#modules/gdnative/include/"])
|
2017-10-03 23:07:29 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if gd_wrapper_env["use_lto"]:
|
2018-01-04 19:42:02 +01:00
|
|
|
if not env.msvc:
|
2020-03-30 08:28:32 +02:00
|
|
|
gd_wrapper_env.Append(CCFLAGS=["-fno-lto"])
|
|
|
|
gd_wrapper_env.Append(LINKFLAGS=["-fno-lto"])
|
2018-01-04 19:42:02 +01:00
|
|
|
else:
|
2020-03-30 08:28:32 +02:00
|
|
|
gd_wrapper_env.Append(CCFLAGS=["/GL-"])
|
|
|
|
gd_wrapper_env.Append(LINKFLAGS=["/LTCG:OFF"])
|
2018-01-04 19:42:02 +01:00
|
|
|
|
2017-11-25 20:26:42 +01:00
|
|
|
if not env.msvc:
|
2020-03-30 08:28:32 +02:00
|
|
|
gd_wrapper_env.Append(CCFLAGS=["-fPIC"])
|
2017-10-03 23:07:29 +02:00
|
|
|
|
2017-11-28 21:27:57 +01:00
|
|
|
lib = gd_wrapper_env.add_library("#bin/gdnative_wrapper_code", [gensource])
|