2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
|
|
|
|
if (env["disable_3d"]=="yes"):
|
|
|
|
|
|
|
|
env.scene_sources.append("3d/spatial.cpp")
|
2015-11-01 20:53:26 +01:00
|
|
|
env.scene_sources.append("3d/skeleton.cpp")
|
2014-02-10 02:10:30 +01:00
|
|
|
else:
|
|
|
|
env.add_source_files(env.scene_sources,"*.cpp")
|
|
|
|
|
|
|
|
Export('env')
|