mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
SCons: Fix MBEDTLS_CONFIG_FILE string escape
Fixes #30431, regression from #30277.
This commit is contained in:
parent
56269e2db8
commit
f1a37be69c
@ -22,7 +22,7 @@ if not has_module:
|
||||
env_thirdparty = env_math.Clone()
|
||||
env_thirdparty.disable_warnings()
|
||||
# Custom config file
|
||||
env_thirdparty.Append(CPPDEFINES=[('MBEDTLS_CONFIG_FILE', "thirdparty/mbedtls/include/godot_core_mbedtls_config.h")])
|
||||
env_thirdparty.Append(CPPDEFINES=[('MBEDTLS_CONFIG_FILE', '\\"thirdparty/mbedtls/include/godot_core_mbedtls_config.h\\"')])
|
||||
thirdparty_mbedtls_dir = "#thirdparty/mbedtls/library/"
|
||||
thirdparty_mbedtls_sources = [
|
||||
"aes.c",
|
||||
|
Loading…
Reference in New Issue
Block a user