summaryrefslogtreecommitdiffstats
path: root/scene/theme/SCsub
blob: 5f62ae4b05a395444f079f7b62c5afaf6ea2a6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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),
)