diff options
| author | nakeee <nakeee@gmail.com> | 2008-09-29 11:33:39 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-09-29 11:33:39 +0000 |
| commit | 8c2a9fa08dc02c28848d41fd2b8d4a053182dc50 (patch) | |
| tree | acbf92e11ecca56c3eb4d3e96b6a8691f7d8c6ff /Source | |
| parent | 7a6937c2d149ef0f043f8c4a5d5e217ee0c4f60d (diff) | |
added files to scons
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@724 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Plugins/Plugin_DSP_HLE/Src/SConscript | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/SConscript b/Source/Plugins/Plugin_DSP_HLE/Src/SConscript index 49fd448cce..34408db767 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/SConscript +++ b/Source/Plugins/Plugin_DSP_HLE/Src/SConscript @@ -4,25 +4,28 @@ Import('env') import sys if sys.platform == 'darwin': - output = "../../../../Binary/mac/Plugins/dsphle.so" + output = '../../../../Binary/mac/Plugins/dsphle.so' else: - output = "../../../../Binary/linux/Plugins/dsphle.so" + output = '../../../../Binary/linux/Plugins/dsphle.so' files = [ - "DSPHandler.cpp", - "MailHandler.cpp", - "main.cpp", - "Config.cpp", - "Globals.cpp", - "PCHW/AOSoundStream.cpp", - "PCHW/Mixer.cpp", - "UCodes/UCode_AX.cpp", - "UCodes/UCode_CARD.cpp", - "UCodes/UCode_InitAudioSystem.cpp", - "UCodes/UCode_Jac.cpp", - "UCodes/UCode_ROM.cpp", - "UCodes/UCodes.cpp", - "UCodes/UCode_Zelda.cpp", + 'DSPHandler.cpp', + 'MailHandler.cpp', + 'main.cpp', + 'Config.cpp', + 'Globals.cpp', + 'PCHW/AOSoundStream.cpp', + 'PCHW/Mixer.cpp', + 'Debugger/Debugger.cpp', + 'Debugger/PBView.cpp', + 'Logging/Logging.cpp', + 'UCodes/UCode_AX.cpp', + 'UCodes/UCode_CARD.cpp', + 'UCodes/UCode_InitAudioSystem.cpp', + 'UCodes/UCode_Jac.cpp', + 'UCodes/UCode_ROM.cpp', + 'UCodes/UCodes.cpp', + 'UCodes/UCode_Zelda.cpp', ] dspenv = env.Clone() |
