Files
dolphin/Source/Core/DSPCore/Src/SConscript
T

28 lines
561 B
Python
Raw Normal View History

# -*- python -*-
Import('env')
files = [
2009-04-12 21:30:22 +00:00
"assemble.cpp",
"disassemble.cpp",
"gdsp_aram.cpp",
"gdsp_condition_codes.cpp",
"gdsp_ext_op.cpp",
"gdsp_interface.cpp",
"gdsp_interpreter.cpp",
"gdsp_memory.cpp",
"gdsp_registers.cpp",
"DSPAnalyzer.cpp",
"DSPInterpreter.cpp",
"DSPJit.cpp",
"DSPCodeUtil.cpp",
2009-04-18 21:26:44 +00:00
"LabelMap.cpp",
2009-04-12 21:30:22 +00:00
# "DSPHost.cpp",
"DSPTables.cpp",
]
acenv = env.Clone()
acenv.Append(CXXFLAGS = [ '-fPIC' ])
2009-04-12 21:30:22 +00:00
acenv.StaticLibrary(env['local_libs'] + 'dspcore', files, LIBS = [ 'common'] )