pandemonium_engine_minimal/servers/SCsub

15 lines
282 B
Plaintext
Raw Permalink Normal View History

2023-12-14 21:54:22 +01:00
#!/usr/bin/env python
Import("env")
env.servers_sources = []
env.add_source_files(env.servers_sources, "*.cpp")
SConscript("physics_2d/SCsub")
SConscript("rendering/SCsub")
SConscript("audio/SCsub")
lib = env.add_library("servers", env.servers_sources)
env.Prepend(LIBS=[lib])