mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
32 lines
669 B
Python
32 lines
669 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
env.drivers_sources = []
|
|
|
|
# OS drivers
|
|
SConscript("unix/SCsub")
|
|
SConscript("windows/SCsub")
|
|
|
|
# Sounds drivers
|
|
SConscript("alsa/SCsub")
|
|
SConscript("coreaudio/SCsub")
|
|
SConscript("pulseaudio/SCsub")
|
|
if env["platform"] == "windows":
|
|
SConscript("wasapi/SCsub")
|
|
if env["xaudio2"]:
|
|
SConscript("xaudio2/SCsub")
|
|
|
|
# Graphics drivers
|
|
if env["platform"] != "server":
|
|
SConscript("gles2/SCsub")
|
|
SConscript("gles_common/SCsub")
|
|
SConscript("gl_context/SCsub")
|
|
else:
|
|
SConscript("dummy/SCsub")
|
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
|
|
lib = env.add_library("drivers", env.drivers_sources)
|
|
env.Prepend(LIBS=[lib])
|