blob: 9c1e72f04f145d644952a29466fd29e58b0bad76 (
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");
|