2023-08-05 22:42:21 +00:00
|
|
|
#!/usr/bin/env python
|
2023-08-17 14:25:50 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
2023-08-05 22:42:21 +00:00
|
|
|
libname = "EXTENSION-NAME"
|
2023-10-15 17:50:01 +00:00
|
|
|
projectdir = "demo"
|
2023-08-05 22:42:21 +00:00
|
|
|
|
2023-08-17 14:25:50 +00:00
|
|
|
localEnv = Environment(tools=["default"], PLATFORM="")
|
|
|
|
|
|
|
|
customs = ["custom.py"]
|
|
|
|
customs = [os.path.abspath(path) for path in customs]
|
|
|
|
|
|
|
|
opts = Variables(customs, ARGUMENTS)
|
|
|
|
opts.Update(localEnv)
|
|
|
|
|
|
|
|
Help(opts.GenerateHelpText(localEnv))
|
|
|
|
|
|
|
|
env = localEnv.Clone()
|
|
|
|
|
|
|
|
env = SConscript("godot-cpp/SConstruct", {"env": env, "customs": customs})
|
2023-08-05 22:42:21 +00:00
|
|
|
|
|
|
|
env.Append(CPPPATH=["src/"])
|
|
|
|
sources = Glob("src/*.cpp")
|
|
|
|
|
2024-08-16 18:39:39 +00:00
|
|
|
if env["target"] in ["editor", "template_debug"]:
|
|
|
|
try:
|
|
|
|
doc_data = env.GodotCPPDocData("src/gen/doc_data.gen.cpp", source=Glob("doc_classes/*.xml"))
|
|
|
|
sources.append(doc_data)
|
|
|
|
except AttributeError:
|
|
|
|
print("Not including class reference as we're targeting a pre-4.3 baseline.")
|
|
|
|
|
2023-10-15 17:50:01 +00:00
|
|
|
file = "{}{}{}".format(libname, env["suffix"], env["SHLIBSUFFIX"])
|
|
|
|
|
2024-05-17 11:08:55 +00:00
|
|
|
if env["platform"] == "macos" or env["platform"] == "ios":
|
2023-08-05 22:42:21 +00:00
|
|
|
platlibname = "{}.{}.{}".format(libname, env["platform"], env["target"])
|
2023-10-15 17:50:01 +00:00
|
|
|
file = "{}.framework/{}".format(env["platform"], platlibname, platlibname)
|
|
|
|
|
|
|
|
libraryfile = "bin/{}/{}".format(env["platform"], file)
|
|
|
|
library = env.SharedLibrary(
|
|
|
|
libraryfile,
|
|
|
|
source=sources,
|
|
|
|
)
|
|
|
|
|
2023-11-27 19:55:30 +00:00
|
|
|
copy = env.InstallAs("{}/bin/{}/lib{}".format(projectdir, env["platform"], file), library)
|
2023-08-05 22:42:21 +00:00
|
|
|
|
2023-10-15 17:50:01 +00:00
|
|
|
default_args = [library, copy]
|
2023-08-17 14:25:50 +00:00
|
|
|
Default(*default_args)
|