summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/Src/SConscript
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-03-23 20:55:32 +0000
committernakeee <nakeee@gmail.com>2009-03-23 20:55:32 +0000
commit7f66eaa694ce60d44402b95ee0bad21224c79506 (patch)
treebfc512a8a928e764410737fbefd2abe9eea04b86 /Source/Core/AudioCommon/Src/SConscript
parent34c05f8e879e2aff3a7aff2d26b1a0aee64ac458 (diff)
Some clean up
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2743 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/AudioCommon/Src/SConscript')
-rw-r--r--Source/Core/AudioCommon/Src/SConscript11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/Src/SConscript b/Source/Core/AudioCommon/Src/SConscript
new file mode 100644
index 0000000000..2fb00f47b7
--- /dev/null
+++ b/Source/Core/AudioCommon/Src/SConscript
@@ -0,0 +1,11 @@
+# -*- python -*-
+
+Import('env')
+
+files = [
+ 'AOSoundStream.cpp',
+ ]
+
+env_audiocommon = env.Clone()
+env_audiocommon.Append(CXXFLAGS = [ '-fPIC' ])
+env_audiocommon.StaticLibrary('audiocommon', files)