Merge pull request #1339 from aaronfranke/detect-gdext

Allow detecting when building as a GDExtension
pull/1346/head
David Snopek 2023-12-29 14:14:35 -06:00 committed by GitHub
commit 3f44e9b404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -295,6 +295,9 @@ def generate(env):
if env["precision"] == "double":
env.Append(CPPDEFINES=["REAL_T_IS_DOUBLE"])
# Allow detecting when building as a GDExtension.
env.Append(CPPDEFINES=["GDEXTENSION"])
# Suffix
suffix = ".{}.{}".format(env["platform"], env["target"])
if env.dev_build: