mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 09:35:35 +00:00
52deb12599
Please test on windows git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2018 8ced0084-cf51-0410-be5f-012b33b47a6e
29 lines
540 B
Python
29 lines
540 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_DSP_NULL"
|
|
|
|
files = [
|
|
"DSPHandler.cpp",
|
|
"MailHandler.cpp",
|
|
"main.cpp",
|
|
"Globals.cpp",
|
|
"UCodes/UCode_AX.cpp",
|
|
"UCodes/UCode_AXWii.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(env['plugin_dir']+name, files)
|