mirror of
https://github.com/godotengine/godot
synced 2024-11-02 12:55:22 +00:00
12 lines
256 B
Python
12 lines
256 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_text_server_fb = env_modules.Clone()
|
|
env_text_server_fb.Append(
|
|
CPPPATH=[
|
|
"#thirdparty/freetype/include",
|
|
]
|
|
)
|
|
env_text_server_fb.add_source_files(env.modules_sources, "*.cpp")
|