summaryrefslogtreecommitdiff
path: root/modules/mono/editor_templates/SCsub
blob: 39f6cb5c01caa728f64977d246ee010907ad71a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

Import("env")

import editor.template_builders as build_template_cs

env["BUILDERS"]["MakeCSharpTemplateBuilder"] = Builder(
    action=env.Run(build_template_cs.make_templates, "Generating C# templates header."),
    suffix=".h",
    src_suffix=".cs",
)

# Template files
templates_sources = Glob("*/*.cs")

env.Alias("editor_template_cs", [env.MakeCSharpTemplateBuilder("templates.gen.h", templates_sources)])