mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 10:39:13 +01:00
404c625622
On OS X, build all code as Objective-C(++). Centralize framework handling. Cleanup. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5645 8ced0084-cf51-0410-be5f-012b33b47a6e
38 lines
657 B
Python
38 lines
657 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_DSP_HLE"
|
|
|
|
files = [
|
|
'DSPHandler.cpp',
|
|
'MailHandler.cpp',
|
|
'HLEMixer.cpp',
|
|
'main.cpp',
|
|
'Config.cpp',
|
|
'UCodes/UCode_AX.cpp',
|
|
'UCodes/UCode_AXWii.cpp',
|
|
'UCodes/UCode_CARD.cpp',
|
|
'UCodes/UCode_InitAudioSystem.cpp',
|
|
'UCodes/UCode_ROM.cpp',
|
|
'UCodes/UCodes.cpp',
|
|
'UCodes/UCode_Zelda.cpp',
|
|
'UCodes/UCode_Zelda_ADPCM.cpp',
|
|
'UCodes/UCode_Zelda_Voice.cpp',
|
|
'UCodes/UCode_Zelda_Synth.cpp',
|
|
]
|
|
|
|
dspenv = env.Clone()
|
|
|
|
if dspenv['HAVE_WX']:
|
|
files += [
|
|
'ConfigDlg.cpp',
|
|
]
|
|
|
|
dspenv.Append(
|
|
LIBS = [ 'common', 'audiocommon' ],
|
|
)
|
|
|
|
dspenv.SharedLibrary(env['plugin_dir']+name, files)
|