Compare commits
5 Commits
3ac09f9d12
...
e004019c36
Author | SHA1 | Date |
---|---|---|
|
e004019c36 | |
|
3f44e9b404 | |
|
e17c7bf530 | |
|
fe25e221a5 | |
|
64f0a6150d |
|
@ -163,7 +163,7 @@ target_compile_definitions(${PROJECT_NAME} PUBLIC
|
||||||
DEBUG_ENABLED
|
DEBUG_ENABLED
|
||||||
DEBUG_METHODS_ENABLED
|
DEBUG_METHODS_ENABLED
|
||||||
>
|
>
|
||||||
$<${compiler_is_msvc}:
|
$<$<AND:$<BOOL:${WIN32}>,$<NOT:${compiler_is_gnu}>>:
|
||||||
TYPED_METHOD_BIND
|
TYPED_METHOD_BIND
|
||||||
>
|
>
|
||||||
)
|
)
|
||||||
|
|
|
@ -295,6 +295,9 @@ def generate(env):
|
||||||
if env["precision"] == "double":
|
if env["precision"] == "double":
|
||||||
env.Append(CPPDEFINES=["REAL_T_IS_DOUBLE"])
|
env.Append(CPPDEFINES=["REAL_T_IS_DOUBLE"])
|
||||||
|
|
||||||
|
# Allow detecting when building as a GDExtension.
|
||||||
|
env.Append(CPPDEFINES=["GDEXTENSION"])
|
||||||
|
|
||||||
# Suffix
|
# Suffix
|
||||||
suffix = ".{}.{}".format(env["platform"], env["target"])
|
suffix = ".{}.{}".format(env["platform"], env["target"])
|
||||||
if env.dev_build:
|
if env.dev_build:
|
||||||
|
|
Loading…
Reference in New Issue