mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 13:43:15 +00:00
62464839ad
AR/VR base classes and position tracker support
19 lines
343 B
Python
19 lines
343 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.servers_sources = []
|
|
env.add_source_files(env.servers_sources, "*.cpp")
|
|
|
|
Export('env')
|
|
|
|
SConscript('arvr/SCsub')
|
|
SConscript('physics/SCsub')
|
|
SConscript('physics_2d/SCsub')
|
|
SConscript('visual/SCsub')
|
|
SConscript('audio/SCsub')
|
|
|
|
lib = env.Library("servers", env.servers_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|