blob: 60b16cd0d4d613f08b877f3234567947535f4402 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources, "*.cpp")
env.add_source_files(env.scene_sources, "*.c")
Export('env')
SConscript("default_theme/SCsub")
|