mirror of
https://github.com/godotengine/godot
synced 2024-11-05 16:53:09 +00:00
fd2ec47ec9
This also puts the default theme icons into their own folder.
18 lines
461 B
Python
18 lines
461 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
from platform_methods import run_in_subprocess
|
|
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",
|
|
run_in_subprocess(default_theme_builders.make_fonts_header),
|
|
)
|