mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
f6edc361b4
Improved volume mode 0. Initial work on more correct volume mode 1 emulation sounds, but it's not activated. Made the volumes less annoying, anyway. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3746 8ced0084-cf51-0410-be5f-012b33b47a6e
47 lines
878 B
Python
47 lines
878 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_DSP_HLE"
|
|
|
|
files = [
|
|
'DSPHandler.cpp',
|
|
'MailHandler.cpp',
|
|
'HLEMixer.cpp',
|
|
'main.cpp',
|
|
'Config.cpp',
|
|
'Globals.cpp',
|
|
'Debugger/File.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',
|
|
'Debugger/Debugger.cpp',
|
|
'Debugger/PBView.cpp',
|
|
'Debugger/Mails.cpp',
|
|
'Debugger/Blocks.cpp',
|
|
'Debugger/Logging.cpp',
|
|
|
|
]
|
|
|
|
dspenv.Append(
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
LIBS = [ 'common', 'audiocommon' ],
|
|
)
|
|
|
|
dspenv.SharedLibrary(env['plugin_dir']+name, files)
|