summaryrefslogtreecommitdiff
path: root/scene/3d/SCsub
blob: 90e78ba8d38132bf6cbe7a0c30556e0b26ab2edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

Import('env')


if (env["disable_3d"] == "yes"):

    env.scene_sources.append("3d/spatial.cpp")
    env.scene_sources.append("3d/skeleton.cpp")
else:
    env.add_source_files(env.scene_sources, "*.cpp")

Export('env')