2020-08-05 14:25:28 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
|
|
|
|
2022-08-05 01:11:01 +08:00
|
|
|
freetype_enabled = "freetype" in env.module_list
|
|
|
|
msdfgen_enabled = "msdfgen" in env.module_list
|
2020-12-27 21:30:33 +08:00
|
|
|
|
2020-08-05 14:25:28 +08:00
|
|
|
env_text_server_fb = env_modules.Clone()
|
2020-12-27 21:30:33 +08:00
|
|
|
|
2022-06-14 15:29:58 +08:00
|
|
|
if "svg" in env.module_list:
|
|
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/thorvg/inc", "#thirdparty/thorvg/src/lib"])
|
|
|
|
|
2022-03-28 15:28:08 +08:00
|
|
|
if env["builtin_msdfgen"] and msdfgen_enabled:
|
2023-05-11 18:32:23 +08: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 21:30:33 +08:00
|
|
|
|
2022-03-28 15:28:08 +08:00
|
|
|
if env["builtin_freetype"] and freetype_enabled:
|
2022-08-01 17:03:20 +08:00
|
|
|
env_text_server_fb.Append(CPPDEFINES=["FT_CONFIG_OPTION_USE_BROTLI"])
|
2022-08-01 03:52:59 +08:00
|
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/freetype/include"])
|
2020-12-17 23:01:36 +08:00
|
|
|
|
2020-08-05 14:25:28 +08:00
|
|
|
env_text_server_fb.add_source_files(env.modules_sources, "*.cpp")
|