mirror of
https://github.com/godotengine/godot.git
synced 2026-04-28 22:22:03 +00:00
15 lines
343 B
Python
15 lines
343 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
|
|
import make_ltc_lut
|
|
|
|
env.add_source_files(env.servers_sources, "*.cpp")
|
|
|
|
env.CommandNoCache(
|
|
"ltc_lut.gen.h",
|
|
["make_ltc_lut.py", "#servers/rendering/storage/ltc/ltc_lut1.dds", "#servers/rendering/storage/ltc/ltc_lut2.dds"],
|
|
env.Run(make_ltc_lut.run),
|
|
)
|