godot/servers/SCsub

20 lines
389 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2014-02-10 02:10:30 +01:00
Import('env')
env.servers_sources = []
env.add_source_files(env.servers_sources, "*.cpp")
2014-02-10 02:10:30 +01:00
Export('env')
SConscript('physics/SCsub')
SConscript('physics_2d/SCsub')
SConscript('visual/SCsub')
SConscript('audio/SCsub')
SConscript('spatial_sound/SCsub')
SConscript('spatial_sound_2d/SCsub')
2014-02-10 02:10:30 +01:00
lib = env.Library("servers", env.servers_sources)
2014-02-10 02:10:30 +01:00
env.Prepend(LIBS=[lib])