blob: 702ed1a9bf0122685ea366221aae6b7cf6f18392 (
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");
|