mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
31f1fabbac
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@622 8ced0084-cf51-0410-be5f-012b33b47a6e
34 lines
640 B
Python
34 lines
640 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
if sys.platform == 'darwin':
|
|
output = "../../../../Binary/mac/Plugins/dsphle.so"
|
|
else:
|
|
output = "../../../../Binary/linux/Plugins/dsphle.so"
|
|
|
|
files = [
|
|
"DSPHandler.cpp",
|
|
"MailHandler.cpp",
|
|
"main.cpp",
|
|
"Config.cpp",
|
|
"Globals.cpp",
|
|
"PCHW/AOSoundStream.cpp",
|
|
"PCHW/Mixer.cpp",
|
|
"UCodes/UCode_AX.cpp",
|
|
"UCodes/UCode_CARD.cpp",
|
|
"UCodes/UCode_InitAudioSystem.cpp",
|
|
"UCodes/UCode_Jac.cpp",
|
|
"UCodes/UCode_ROM.cpp",
|
|
"UCodes/UCodes.cpp",
|
|
"UCodes/UCode_Zelda.cpp",
|
|
]
|
|
|
|
dspenv = env.Clone()
|
|
dspenv.Append(
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
dspenv.SharedLibrary(output, files)
|