2020-08-05 06:25:28 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
|
|
|
|
2022-08-04 17:11:01 +00:00
|
|
|
freetype_enabled = "freetype" in env.module_list
|
|
|
|
msdfgen_enabled = "msdfgen" in env.module_list
|
2020-12-27 13:30:33 +00:00
|
|
|
|
2020-08-05 06:25:28 +00:00
|
|
|
env_text_server_fb = env_modules.Clone()
|
2020-12-27 13:30:33 +00:00
|
|
|
|
2022-06-14 07:29:58 +00:00
|
|
|
if "svg" in env.module_list:
|
2023-09-18 12:49:04 +00:00
|
|
|
env_text_server_fb.Prepend(
|
|
|
|
CPPPATH=["#thirdparty/thorvg/inc", "#thirdparty/thorvg/src/lib", "#thirdparty/thorvg/src/utils"]
|
|
|
|
)
|
2023-08-17 11:33:15 +00:00
|
|
|
# Enable ThorVG static object linking.
|
|
|
|
env_text_server_fb.Append(CPPDEFINES=["TVG_STATIC"])
|
2022-06-14 07:29:58 +00:00
|
|
|
|
2022-03-28 07:28:08 +00:00
|
|
|
if env["builtin_msdfgen"] and msdfgen_enabled:
|
2023-05-11 10:32:23 +00:00
|
|
|
# Treat msdfgen headers as system headers to avoid raising warnings. Not supported on MSVC.
|
|
|
|
if not env.msvc:
|
|
|
|
env_text_server_fb.Append(CPPFLAGS=["-isystem", Dir("#thirdparty/msdfgen").path])
|
|
|
|
else:
|
|
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/msdfgen"])
|
2020-12-27 13:30:33 +00:00
|
|
|
|
2022-03-28 07:28:08 +00:00
|
|
|
if env["builtin_freetype"] and freetype_enabled:
|
2022-08-01 09:03:20 +00:00
|
|
|
env_text_server_fb.Append(CPPDEFINES=["FT_CONFIG_OPTION_USE_BROTLI"])
|
2022-07-31 19:52:59 +00:00
|
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/freetype/include"])
|
2020-12-17 15:01:36 +00:00
|
|
|
|
2020-08-05 06:25:28 +00:00
|
|
|
env_text_server_fb.add_source_files(env.modules_sources, "*.cpp")
|