From 8c2a9fa08dc02c28848d41fd2b8d4a053182dc50 Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 29 Sep 2008 11:33:39 +0000 Subject: [PATCH] added files to scons git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@724 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_HLE/Src/SConscript | 35 +++++++++++--------- 1 file 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()