blob: cd210466a2a8473a26e12f3855a70fd1f8140eac (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python
from misc.utility.scons_hints import *
Import("env")
env.add_source_files(env.drivers_sources, "*.cpp")
env.Append(CPPDEFINES=["XAUDIO2_ENABLED"])
env.Append(LINKFLAGS=["xaudio2_8.lib"])
|