dolphin/Source/Plugins/Plugin_DSP_LLE/Src/SConscript

36 lines
660 B
Python
Raw Normal View History

# -*- 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)