2008-09-21 22:54:29 +03:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-08-17 00:58:07 +03:00
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
2008-11-11 22:59:48 +02:00
|
|
|
name = "Plugin_DSP_HLE.so"
|
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',
|
|
|
|
'main.cpp',
|
|
|
|
'Config.cpp',
|
|
|
|
'Globals.cpp',
|
|
|
|
'PCHW/AOSoundStream.cpp',
|
|
|
|
'PCHW/Mixer.cpp',
|
2008-10-04 20:26:12 +03:00
|
|
|
'Debugger/Debugger.cpp',
|
|
|
|
'Debugger/PBView.cpp',
|
|
|
|
'Logging/Logging.cpp',
|
2008-10-05 01:22:29 +03:00
|
|
|
'Logging/Console.cpp',
|
2008-09-29 14:33:39 +03:00
|
|
|
'UCodes/UCode_AX.cpp',
|
2008-11-10 11:30:36 +02:00
|
|
|
'UCodes/UCode_AXWii.cpp',
|
2008-09-29 14:33:39 +03:00
|
|
|
'UCodes/UCode_CARD.cpp',
|
|
|
|
'UCodes/UCode_InitAudioSystem.cpp',
|
|
|
|
'UCodes/UCode_Jac.cpp',
|
|
|
|
'UCodes/UCode_ROM.cpp',
|
|
|
|
'UCodes/UCodes.cpp',
|
|
|
|
'UCodes/UCode_Zelda.cpp',
|
2008-08-27 01:28:42 +03:00
|
|
|
]
|
|
|
|
|
2008-09-16 19:50:09 +03:00
|
|
|
dspenv = env.Clone()
|
2008-08-27 01:28:42 +03:00
|
|
|
dspenv.Append(
|
2008-09-23 02:36:16 +03:00
|
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
|
|
LIBS = [ 'common' ],
|
2008-08-27 01:28:42 +03:00
|
|
|
)
|
2008-10-20 20:32:15 +03:00
|
|
|
if not env['osx64']:
|
2008-11-11 22:59:48 +02:00
|
|
|
dspenv.SharedLibrary('../../../../'+env['plugin_dir']+name, files)
|