summaryrefslogtreecommitdiffstats
path: root/tools/godotcpp.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/godotcpp.py')
-rw-r--r--tools/godotcpp.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/godotcpp.py b/tools/godotcpp.py
index d5285dc..c4165c9 100644
--- a/tools/godotcpp.py
+++ b/tools/godotcpp.py
@@ -286,6 +286,15 @@ def options(opts, env):
)
opts.Add(
+ PathVariable(
+ "build_profile",
+ "Path to a file containing a feature build profile",
+ default=env.get("build_profile", None),
+ validator=validate_file,
+ )
+ )
+
+ opts.Add(
BoolVariable(
key="use_hot_reload",
help="Enable the extra accounting required to support hot reload.",