2020-11-18 18:11:30 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2020-11-18 18:11:30 +00:00
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
|
|
|
|
|
|
SConscript("shaders/SCsub")
|
2022-03-12 11:19:59 +00:00
|
|
|
SConscript("storage/SCsub")
|
2022-05-18 15:04:41 +00:00
|
|
|
SConscript("effects/SCsub")
|
2022-05-20 02:52:19 +00:00
|
|
|
SConscript("environment/SCsub")
|