2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-08-17 00:58:07 +03:00
|
|
|
Import('env')
|
2010-07-24 20:39:17 +03:00
|
|
|
import os
|
2008-08-17 00:58:07 +03:00
|
|
|
|
2010-07-24 20:39:17 +03:00
|
|
|
name = os.sep + "Plugin_DSP_HLE"
|
2008-09-23 02:36:16 +03:00
|
|
|
|
2008-08-27 01:28:42 +03:00
|
|
|
files = [
|
2008-09-29 14:33:39 +03:00
|
|
|
'DSPHandler.cpp',
|
|
|
|
'MailHandler.cpp',
|
2009-07-11 16:57:21 +03:00
|
|
|
'HLEMixer.cpp',
|
2008-09-29 14:33:39 +03:00
|
|
|
'main.cpp',
|
|
|
|
'Config.cpp',
|
|
|
|
'UCodes/UCode_AX.cpp',
|
2009-01-29 03:53:07 +02:00
|
|
|
'UCodes/UCode_AXWii.cpp',
|
2008-09-29 14:33:39 +03:00
|
|
|
'UCodes/UCode_CARD.cpp',
|
|
|
|
'UCodes/UCode_InitAudioSystem.cpp',
|
|
|
|
'UCodes/UCode_ROM.cpp',
|
|
|
|
'UCodes/UCodes.cpp',
|
2010-08-04 14:56:25 +03:00
|
|
|
'UCodes/UCode_GBA.cpp',
|
2008-09-29 14:33:39 +03:00
|
|
|
'UCodes/UCode_Zelda.cpp',
|
2009-06-20 14:14:54 +03:00
|
|
|
'UCodes/UCode_Zelda_ADPCM.cpp',
|
2009-06-29 21:40:10 +03:00
|
|
|
'UCodes/UCode_Zelda_Voice.cpp',
|
2009-07-01 21:05:54 +03:00
|
|
|
'UCodes/UCode_Zelda_Synth.cpp',
|
2008-08-27 01:28:42 +03:00
|
|
|
]
|
|
|
|
|
2010-07-19 06:42:37 +03:00
|
|
|
if env['HAVE_WX']:
|
|
|
|
files += [
|
|
|
|
'ConfigDlg.cpp'
|
|
|
|
]
|
2008-12-15 01:52:01 +02:00
|
|
|
|
2010-07-19 06:42:37 +03:00
|
|
|
libs = [ 'common', 'audiocommon' ]
|
2008-11-13 10:12:48 +02:00
|
|
|
|
2010-10-05 21:10:06 +03:00
|
|
|
env.SharedLibrary(env['plugin_dir'] + name, files, LIBS = libs + env['LIBS'])
|