2020-08-05 08:25:28 +02:00
|
|
|
#!/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",
|
|
|
|
]
|
|
|
|
)
|
2020-12-17 16:01:36 +01:00
|
|
|
|
2020-08-05 08:25:28 +02:00
|
|
|
env_text_server_fb.add_source_files(env.modules_sources, "*.cpp")
|