2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-06-16 20:34:48 +02:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import default_theme_builders
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
2020-06-16 20:34:48 +02:00
|
|
|
|
|
|
|
env.Depends("#scene/resources/default_theme/default_font.gen.h", "#thirdparty/fonts/OpenSans_SemiBold.ttf")
|
|
|
|
env.CommandNoCache(
|
|
|
|
"#scene/resources/default_theme/default_font.gen.h",
|
|
|
|
"#thirdparty/fonts/OpenSans_SemiBold.ttf",
|
|
|
|
run_in_subprocess(default_theme_builders.make_fonts_header),
|
|
|
|
)
|