mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
2c74f66070
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1158 8ced0084-cf51-0410-be5f-012b33b47a6e
36 lines
670 B
Python
36 lines
670 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_CARD.cpp",
|
|
"UCodes/UCode_InitAudioSystem.cpp",
|
|
"UCodes/UCode_Jac.cpp",
|
|
"UCodes/UCode_ROM.cpp",
|
|
"UCodes/UCodes.cpp",
|
|
"UCodes/UCode_Zelda.cpp",
|
|
]
|
|
|
|
dspenv = env.Clone()
|
|
if not dspenv['osx64']:
|
|
dspenv.Append(
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
else:
|
|
dspenv.Append(
|
|
CXXFLAGS = [ '-fPIC','-arch', 'x86_64' ],
|
|
LINKFLAGS = [ '-arch', 'x86_64' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
|
|
dspenv.SharedLibrary(env['plugin_dir']+name, files)
|