summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2023-01-10 16:09:02 +0100
committerGitHub <noreply@github.com>2023-01-10 16:09:02 +0100
commit2b7094f342beb11166f86a6309bba86fe4b21838 (patch)
treefd9a73d0162c2b8d72fa46d9ebbe6c7995e65d81 /SConstruct
parent8ee9cab8f87dc1c09fe1f85eb632dac46a395c72 (diff)
parent47140cdad095494dcbfc070918d1b422d8a0761d (diff)
downloadredot-cpp-2b7094f342beb11166f86a6309bba86fe4b21838.tar.gz
Merge pull request #988 from rburing/precision=double
Rename `float=64` build option to `precision=double`
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index bae65cc..27ee137 100644
--- a/SConstruct
+++ b/SConstruct
@@ -122,7 +122,7 @@ opts.Add(
opts.Add(BoolVariable("generate_template_get_node", "Generate a template version of the Node class's get_node.", True))
opts.Add(BoolVariable("build_library", "Build the godot-cpp library.", True))
-opts.Add(EnumVariable("float", "Floating-point precision", "32", ("32", "64")))
+opts.Add(EnumVariable("precision", "Set the floating-point precision level", "single", ("single", "double")))
# Add platform options
tools = {}
@@ -204,7 +204,7 @@ if env.get("is_msvc", False):
else:
env.Append(CXXFLAGS=["-std=c++17"])
-if env["float"] == "64":
+if env["precision"] == "double":
env.Append(CPPDEFINES=["REAL_T_IS_DOUBLE"])
# Generate bindings
@@ -239,7 +239,7 @@ sources.extend([f for f in bindings if str(f).endswith(".cpp")])
suffix = ".{}.{}".format(env["platform"], env["target"])
if env.dev_build:
suffix += ".dev"
-if env["float"] == "64":
+if env["precision"] == "double":
suffix += ".double"
suffix += "." + env["arch"]
if env["ios_simulator"]: