mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
a1e768c508
Betsy: Implement BC4 compression
29 lines
781 B
Python
29 lines
781 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_betsy = env_modules.Clone()
|
|
env_betsy.GLSL_HEADER("bc6h.glsl")
|
|
env_betsy.GLSL_HEADER("bc1.glsl")
|
|
env_betsy.GLSL_HEADER("bc4.glsl")
|
|
env_betsy.Depends(Glob("*.glsl.gen.h"), ["#glsl_builders.py"])
|
|
|
|
# Thirdparty source files
|
|
thirdparty_obj = []
|
|
thirdparty_dir = "#thirdparty/betsy/"
|
|
env_betsy.Prepend(CPPPATH=[thirdparty_dir])
|
|
|
|
env_thirdparty = env_betsy.Clone()
|
|
env_thirdparty.disable_warnings()
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
# Godot source files
|
|
module_obj = []
|
|
env_betsy.add_source_files(module_obj, "*.cpp")
|
|
env.modules_sources += module_obj
|
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
env.Depends(module_obj, thirdparty_obj)
|