951a1016d3
Modules can now call: env.module_add_dependencies(name: str, deps: list, optional: bool) To add required or optional dependencies during the "can_build" step. Required dependencies will be checked and the module will be not be enabled when they are missing, printing a warning to notify the user.
17 lines
500 B
Python
17 lines
500 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
freetype_enabled = "freetype" in env.module_list
|
|
msdfgen_enabled = "msdfgen" in env.module_list
|
|
|
|
env_text_server_fb = env_modules.Clone()
|
|
|
|
if env["builtin_msdfgen"] and msdfgen_enabled:
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/msdfgen"])
|
|
|
|
if env["builtin_freetype"] and freetype_enabled:
|
|
env_text_server_fb.Prepend(CPPPATH=["#thirdparty/freetype/include"])
|
|
|
|
env_text_server_fb.add_source_files(env.modules_sources, "*.cpp")
|