mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 06:48:03 +03:00
25 lines
429 B
Text
25 lines
429 B
Text
![]() |
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
"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",
|
||
|
"DSPHost.cpp",
|
||
|
"DSPTables.cpp",
|
||
|
]
|
||
|
|
||
|
acenv = env.Clone()
|
||
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
|
||
|
acenv.StaticLibrary('dspcore', files)
|