summaryrefslogtreecommitdiff
path: root/drivers/xaudio2/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xaudio2/SCsub')
-rw-r--r--drivers/xaudio2/SCsub9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/xaudio2/SCsub b/drivers/xaudio2/SCsub
new file mode 100644
index 0000000000..cb780a893b
--- /dev/null
+++ b/drivers/xaudio2/SCsub
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+
+Import('env')
+
+env.add_source_files(env.drivers_sources, "*.cpp")
+env.Append(CXXFLAGS=['-DXAUDIO2_ENABLED'])
+env.Append(LINKFLAGS=['xaudio2_8.lib'])
+
+Export('env')