summaryrefslogtreecommitdiff
path: root/servers/SCsub
blob: 121990f2e1a7fe94951edee5696d1c2bcaa7c68c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

Import("env")

env.servers_sources = []
env.add_source_files(env.servers_sources, "*.cpp")

SConscript("xr/SCsub")
SConscript("camera/SCsub")
SConscript("physics_3d/SCsub")
SConscript("physics_2d/SCsub")
SConscript("rendering/SCsub")
SConscript("audio/SCsub")

lib = env.add_library("servers", env.servers_sources)

env.Prepend(LIBS=[lib])