mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
8 lines
228 B
Python
8 lines
228 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
|
|
import editor.template_builders as build_template_gd
|
|
|
|
env.CommandNoCache("templates.gen.h", Glob("*/*.gd"), env.Run(build_template_gd.make_templates))
|