mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
15 lines
282 B
Python
15 lines
282 B
Python
#!/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])
|