@@ -110,7 +110,7 @@ if env["thorvg_enabled"] and env["freetype_enabled"]:
110110 env .Append (CPPDEFINES = ["MODULE_SVG_ENABLED" ])
111111
112112 lib = env_tvg .Library (
113- f' tvg_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' ,
113+ f" tvg_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " ,
114114 thirdparty_tvg_sources ,
115115 )
116116 env .Append (LIBS = [lib ])
@@ -155,7 +155,7 @@ if env["msdfgen_enabled"] and env["freetype_enabled"]:
155155 env .Append (CPPDEFINES = ["MODULE_MSDFGEN_ENABLED" ])
156156
157157 lib = env_msdfgen .Library (
158- f' msdfgen_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' ,
158+ f" msdfgen_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " ,
159159 thirdparty_msdfgen_sources ,
160160 )
161161 env .Append (LIBS = [lib ])
@@ -284,7 +284,7 @@ if env["freetype_enabled"]:
284284 env .Append (CPPDEFINES = ["MODULE_FREETYPE_ENABLED" ])
285285
286286 lib = env_freetype .Library (
287- f' freetype_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' ,
287+ f" freetype_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " ,
288288 thirdparty_freetype_sources ,
289289 )
290290 env .Append (LIBS = [lib ])
@@ -418,7 +418,7 @@ if env["freetype_enabled"]:
418418env .Append (CPPPATH = ["../../../thirdparty/harfbuzz/src" ])
419419
420420lib = env_harfbuzz .Library (
421- f' harfbuzz_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' ,
421+ f" harfbuzz_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " ,
422422 thirdparty_harfbuzz_sources ,
423423)
424424env .Prepend (LIBS = [lib ])
@@ -478,7 +478,7 @@ if env["graphite_enabled"] and env["freetype_enabled"]:
478478 )
479479
480480 lib = env_graphite .Library (
481- f' graphite_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' ,
481+ f" graphite_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " ,
482482 thirdparty_graphite_sources ,
483483 )
484484 env .Append (LIBS = [lib ])
@@ -737,7 +737,7 @@ env.Append(CPPPATH=["../../../thirdparty/icu4c/common/", "../../../thirdparty/ic
737737if env ["platform" ] == "windows" :
738738 env .Append (LIBS = ["advapi32" ])
739739
740- lib = env_icu .Library (f' icu_builtin{ env [" suffix" ]} { env [" LIBSUFFIX" ] } ' , thirdparty_icu_sources )
740+ lib = env_icu .Library (f" icu_builtin{ env [' suffix' ]} { env [' LIBSUFFIX' ] } " , thirdparty_icu_sources )
741741env .Append (LIBS = [lib ])
742742
743743env .Append (CPPDEFINES = ["GDEXTENSION" ])
@@ -746,18 +746,18 @@ sources = Glob("../*.cpp")
746746
747747if env ["platform" ] == "macos" :
748748 methods .write_macos_plist (
749- f' ./bin/libtextserver_advanced.macos.{ env [" target" ]} .framework' ,
750- f' libtextserver_advanced.macos.{ env [" target" ] } ' ,
749+ f" ./bin/libtextserver_advanced.macos.{ env [' target' ]} .framework" ,
750+ f" libtextserver_advanced.macos.{ env [' target' ] } " ,
751751 "org.godotengine.textserver_advanced" ,
752752 "ICU / HarfBuzz / Graphite Text Server" ,
753753 )
754754 library = env .SharedLibrary (
755- f' ./bin/libtextserver_advanced.macos.{ env [" target" ]} .framework/libtextserver_advanced.macos.{ env [" target" ] } ' ,
755+ f" ./bin/libtextserver_advanced.macos.{ env [' target' ]} .framework/libtextserver_advanced.macos.{ env [' target' ] } " ,
756756 source = sources ,
757757 )
758758else :
759759 library = env .SharedLibrary (
760- f' ./bin/libtextserver_advanced{ env [" suffix" ]} { env [" SHLIBSUFFIX" ] } ' ,
760+ f" ./bin/libtextserver_advanced{ env [' suffix' ]} { env [' SHLIBSUFFIX' ] } " ,
761761 source = sources ,
762762 )
763763
0 commit comments