diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-04-30 15:49:51 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-05-03 10:48:23 +0200 |
commit | fa698ddd120f836da3f6e901147837b30d829521 (patch) | |
tree | 03c001947b4d00ff9f9cafd93a7a66a5dc4d2578 /SConstruct | |
parent | 1ad24f1d5d18dea7ffc2822b8aee917394aee31f (diff) | |
download | redot-cpp-fa698ddd120f836da3f6e901147837b30d829521.tar.gz |
[Scons] Use builder to track bindings regeneration.
Using a scons Builder we now regenerate the bindings automatically
when the Godot API json or header has changed.
The option to force bindings regeneration (generate_bindings=yes) is
retained.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 42 |
1 files changed, 13 insertions, 29 deletions
@@ -3,6 +3,7 @@ import os import sys import subprocess +from binding_generator import scons_generate_bindings, scons_emit_files if sys.version_info < (3,): @@ -112,13 +113,7 @@ opts.Add( ) opts.Add(PathVariable("custom_api_file", "Path to a custom JSON API file", None, PathVariable.PathIsFile)) opts.Add( - EnumVariable( - "generate_bindings", - "Generate GDNative API bindings", - "auto", - allowed_values=["yes", "no", "auto", "true"], - ignorecase=2, - ) + BoolVariable("generate_bindings", "Force GDExtension API bindings generation. Auto-detected by default.", False) ) opts.Add(EnumVariable("android_arch", "Target Android architecture", "armv7", ["armv7", "arm64v8", "x86", "x86_64"])) opts.Add("macos_deployment_target", "macOS deployment target", "default") @@ -442,16 +437,8 @@ elif env["platform"] == "javascript": elif env["target"] == "release": env.Append(CCFLAGS=["-O3"]) -env.Append( - CPPPATH=[ - ".", - env["headers_dir"], - "#include", - "#gen/include", - ] -) - -# Generate bindings? +# Generate bindings +env.Append(BUILDERS={"GenerateBindings": Builder(action=scons_generate_bindings, emitter=scons_emit_files)}) json_api_file = "" if "custom_api_file" in env: @@ -459,17 +446,16 @@ if "custom_api_file" in env: else: json_api_file = os.path.join(os.getcwd(), env["headers_dir"], "extension_api.json") -if env["generate_bindings"] == "auto": - # Check if generated files exist - should_generate_bindings = not os.path.isfile(os.path.join(os.getcwd(), "gen", "src", "classes", "object.cpp")) -else: - should_generate_bindings = env["generate_bindings"] in ["yes", "true"] +bindings = env.GenerateBindings( + env.Dir("."), [json_api_file, os.path.join(env["headers_dir"], "godot", "gdnative_interface.h")] +) -if should_generate_bindings: - # Actually create the bindings here - import binding_generator +# Forces bindings regeneration. +if env["generate_bindings"]: + AlwaysBuild(bindings) - binding_generator.generate_bindings(json_api_file, env["generate_template_get_node"]) +# Includes +env.Append(CPPPATH=[[env.Dir(d) for d in [env["headers_dir"], "include", os.path.join("gen", "include")]]]) # Sources to compile sources = [] @@ -477,8 +463,7 @@ add_sources(sources, "src", "cpp") add_sources(sources, "src/classes", "cpp") add_sources(sources, "src/core", "cpp") add_sources(sources, "src/variant", "cpp") -add_sources(sources, "gen/src/variant", "cpp") -add_sources(sources, "gen/src/classes", "cpp") +sources.extend([f for f in bindings if str(f).endswith(".cpp")]) env["arch_suffix"] = env["bits"] if env["platform"] == "android": @@ -500,7 +485,6 @@ if env["build_library"]: library = env.StaticLibrary(target=env.File("bin/%s" % library_name), source=sources) Default(library) -env.Append(CPPPATH=[env.Dir(f) for f in ["gen/include", "include", "godot-headers"]]) env.Append(LIBPATH=[env.Dir("bin")]) env.Append(LIBS=library_name) Return("env") |