summaryrefslogtreecommitdiff
path: root/scene/resources/default_theme/SCsub
blob: 0fb6bb2c624f8b7dee193a9b6720dc20705e7c41 (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 os
import os.path
from platform_methods import run_in_subprocess
import default_theme_builders

env.add_source_files(env.scene_sources, "*.cpp")

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),
)