summaryrefslogtreecommitdiff
path: root/modules/text_server_fb/gdextension_build/SConstruct
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-10-05 11:20:58 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-10-05 11:41:03 +0300
commit930be37bb4082a340b9f439ad6c2854f6744f766 (patch)
tree61d9c10870e8ff4ab917779d60a320c7a56ebb05 /modules/text_server_fb/gdextension_build/SConstruct
parent9cd62741bb0e2f410b2fb861f66e2cf10fe0334d (diff)
[TextServer GDExtension] Update build scripts and `.gdextension` files to use new target names and arch suffixes.
Diffstat (limited to 'modules/text_server_fb/gdextension_build/SConstruct')
-rw-r--r--modules/text_server_fb/gdextension_build/SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/text_server_fb/gdextension_build/SConstruct b/modules/text_server_fb/gdextension_build/SConstruct
index eae8e031bf..8ed8f61a43 100644
--- a/modules/text_server_fb/gdextension_build/SConstruct
+++ b/modules/text_server_fb/gdextension_build/SConstruct
@@ -63,7 +63,7 @@ if env["msdfgen_enabled"] and env["freetype_enabled"]:
env.Append(CPPDEFINES=["MODULE_MSDFGEN_ENABLED"])
lib = env_msdfgen.Library(
- f'msdfgen_builtin.{env["platform"]}.{env["target"]}.{env["arch_suffix"]}{env["LIBSUFFIX"]}',
+ f'msdfgen_builtin{env["suffix"]}{env["LIBSUFFIX"]}',
thirdparty_msdfgen_sources,
)
env.Append(LIBS=[lib])
@@ -194,7 +194,7 @@ if env["freetype_enabled"]:
env.Append(CPPDEFINES=["MODULE_FREETYPE_ENABLED"])
lib = env_freetype.Library(
- f'freetype_builtin.{env["platform"]}.{env["target"]}.{env["arch_suffix"]}{env["LIBSUFFIX"]}',
+ f'freetype_builtin{env["suffix"]}{env["LIBSUFFIX"]}',
thirdparty_freetype_sources,
)
env.Append(LIBS=[lib])
@@ -217,7 +217,7 @@ if env["platform"] == "macos":
)
else:
library = env.SharedLibrary(
- f'./bin/libtextserver_fallback.{env["platform"]}.{env["target"]}.{env["arch_suffix"]}{env["SHLIBSUFFIX"]}',
+ f'./bin/libtextserver_fallback{env["suffix"]}{env["SHLIBSUFFIX"]}',
source=sources,
)