mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
mcpx/dsp: Move to a library
This commit is contained in:
parent
672e9cd553
commit
bf51af891d
2 changed files with 5 additions and 4 deletions
2
hw/xbox/mcpx/dsp/meson.build
Normal file
2
hw/xbox/mcpx/dsp/meson.build
Normal file
|
@ -0,0 +1,2 @@
|
|||
libdsp = static_library('dsp', files(['dsp.c', 'dsp_cpu.c', 'dsp_dma.c']) + genh)
|
||||
dsp = declare_dependency(objects: libdsp.extract_all_objects(recursive: false))
|
|
@ -1,10 +1,9 @@
|
|||
subdir('dsp')
|
||||
|
||||
mcpx_ss = ss.source_set()
|
||||
mcpx_ss.add(sdl, libsamplerate, files(
|
||||
mcpx_ss.add(sdl, libsamplerate, dsp, files(
|
||||
'apu.c',
|
||||
'aci.c',
|
||||
'dsp/dsp.c',
|
||||
'dsp/dsp_cpu.c',
|
||||
'dsp/dsp_dma.c',
|
||||
))
|
||||
|
||||
specific_ss.add_all(mcpx_ss)
|
Loading…
Add table
Reference in a new issue