mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
b47f349c96
Default plugins are now in Paths.h Important note for scons users, plugin names now match the one on windows!!! make sure to remove the old ones!! and update your .ini!! git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1131 8ced0084-cf51-0410-be5f-012b33b47a6e
36 lines
660 B
Python
36 lines
660 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_DSP_LLE.so"
|
|
|
|
files = [
|
|
"AOSoundStream.cpp",
|
|
"disassemble.cpp",
|
|
"gdsp_aram.cpp",
|
|
"gdsp_ext_op.cpp",
|
|
"gdsp_interface.cpp",
|
|
"gdsp_interpreter.cpp",
|
|
"gdsp_memory.cpp",
|
|
"gdsp_opcodes.cpp",
|
|
"gdsp_registers.cpp",
|
|
"Globals.cpp",
|
|
"opcodes.cpp",
|
|
"Tools.cpp",
|
|
"main.cpp",
|
|
"Mixer.cpp",
|
|
"Logging/ReadPBs.cpp",
|
|
"Logging/Console.cpp",
|
|
"Logging/Logging.cpp",
|
|
"Logging/AXTask.cpp",
|
|
]
|
|
|
|
lleenv = env.Clone()
|
|
lleenv.Append(
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
if not env['osx64']:
|
|
lleenv.SharedLibrary('../../../../'+env['plugin_dir']+name, files)
|