added files to scons

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@724 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-09-29 11:33:39 +00:00
parent 7a6937c2d1
commit 8c2a9fa08d
1 changed files with 19 additions and 16 deletions

View File

@ -4,25 +4,28 @@ Import('env')
import sys import sys
if sys.platform == 'darwin': if sys.platform == 'darwin':
output = "../../../../Binary/mac/Plugins/dsphle.so" output = '../../../../Binary/mac/Plugins/dsphle.so'
else: else:
output = "../../../../Binary/linux/Plugins/dsphle.so" output = '../../../../Binary/linux/Plugins/dsphle.so'
files = [ files = [
"DSPHandler.cpp", 'DSPHandler.cpp',
"MailHandler.cpp", 'MailHandler.cpp',
"main.cpp", 'main.cpp',
"Config.cpp", 'Config.cpp',
"Globals.cpp", 'Globals.cpp',
"PCHW/AOSoundStream.cpp", 'PCHW/AOSoundStream.cpp',
"PCHW/Mixer.cpp", 'PCHW/Mixer.cpp',
"UCodes/UCode_AX.cpp", 'Debugger/Debugger.cpp',
"UCodes/UCode_CARD.cpp", 'Debugger/PBView.cpp',
"UCodes/UCode_InitAudioSystem.cpp", 'Logging/Logging.cpp',
"UCodes/UCode_Jac.cpp", 'UCodes/UCode_AX.cpp',
"UCodes/UCode_ROM.cpp", 'UCodes/UCode_CARD.cpp',
"UCodes/UCodes.cpp", 'UCodes/UCode_InitAudioSystem.cpp',
"UCodes/UCode_Zelda.cpp", 'UCodes/UCode_Jac.cpp',
'UCodes/UCode_ROM.cpp',
'UCodes/UCodes.cpp',
'UCodes/UCode_Zelda.cpp',
] ]
dspenv = env.Clone() dspenv = env.Clone()