summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-12-14 00:40:17 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-12-14 12:36:59 +0100
commitbab247dcb6b429b108ec585e80760bf6aa7c1771 (patch)
treef9c9c544f01202685a973155086dc9b14c1b2dd7 /SConstruct
parent1e8eb1c1f2c3cb2029b9f0202d8ce5dbe18ec33d (diff)
downloadredot-cpp-bab247dcb6b429b108ec585e80760bf6aa7c1771.tar.gz
Rename godot-headers to gdextension, move header to top folder
Changes the `<godot/gdextension_interface.h>` include to simply `<gdextension_interface.h>`. Refactor and better document the SCons and CMake logic around setting the paths to the header and API JSON file.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct20
1 files changed, 15 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 7fafbc4..09a963f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -77,10 +77,20 @@ opts.Add(
)
opts.Add(
PathVariable(
- "headers_dir", "Path to the directory containing Godot headers", "godot-headers", PathVariable.PathIsDir
+ "gdextension_dir",
+ "Path to the directory containing GDExtension interface header and API JSON file",
+ "gdextension",
+ PathVariable.PathIsDir,
+ )
+)
+opts.Add(
+ PathVariable(
+ "custom_api_file",
+ "Path to a custom GDExtension API JSON file (takes precedence over `gdextension_dir`)",
+ None,
+ PathVariable.PathIsFile,
)
)
-opts.Add(PathVariable("custom_api_file", "Path to a custom JSON API file", None, PathVariable.PathIsFile))
opts.Add(
BoolVariable("generate_bindings", "Force GDExtension API bindings generation. Auto-detected by default.", False)
)
@@ -179,11 +189,11 @@ json_api_file = ""
if "custom_api_file" in env:
json_api_file = env["custom_api_file"]
else:
- json_api_file = os.path.join(os.getcwd(), env["headers_dir"], "extension_api.json")
+ json_api_file = os.path.join(os.getcwd(), env["gdextension_dir"], "extension_api.json")
bindings = env.GenerateBindings(
env.Dir("."),
- [json_api_file, os.path.join(env["headers_dir"], "godot", "gdextension_interface.h"), "binding_generator.py"],
+ [json_api_file, os.path.join(env["gdextension_dir"], "gdextension_interface.h"), "binding_generator.py"],
)
scons_cache_path = os.environ.get("SCONS_CACHE")
@@ -197,7 +207,7 @@ if env["generate_bindings"]:
NoCache(bindings)
# Includes
-env.Append(CPPPATH=[[env.Dir(d) for d in [env["headers_dir"], "include", os.path.join("gen", "include")]]])
+env.Append(CPPPATH=[[env.Dir(d) for d in [env["gdextension_dir"], "include", os.path.join("gen", "include")]]])
# Sources to compile
sources = []