mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:20:21 +00:00
16 lines
403 B
Python
16 lines
403 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
import default_theme_builders
|
|
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
|
|
|
SConscript("icons/SCsub")
|
|
|
|
env.Depends("#scene/theme/default_font.gen.h", "#thirdparty/fonts/OpenSans_SemiBold.woff2")
|
|
env.CommandNoCache(
|
|
"#scene/theme/default_font.gen.h",
|
|
"#thirdparty/fonts/OpenSans_SemiBold.woff2",
|
|
env.Run(default_theme_builders.make_fonts_header),
|
|
)
|