mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Fix include paths and compiling in Linux. Externals soundtouch is 1.7.1, while Ubuntu 12.10 is 1.6.x. Externals soundtouch is compiled with integer samples, while ubuntu is compiled with float samples. Float samples is probably the more common route. If you're going to use soundtouch, you should probably use SAMPLETYPE instead of explicitly choosing short. This probably breaks the windows build since its includes aren't setup.
This commit is contained in:
15
Externals/soundtouch/CMakeLists.txt
vendored
Normal file
15
Externals/soundtouch/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
set(SRCS
|
||||
AAFilter.cpp
|
||||
BPMDetect.cpp
|
||||
cpu_detect_x86.cpp
|
||||
FIFOSampleBuffer.cpp
|
||||
FIRFilter.cpp
|
||||
mmx_optimized.cpp
|
||||
PeakFinder.cpp
|
||||
RateTransposer.cpp
|
||||
SoundTouch.cpp
|
||||
sse_optimized.cpp
|
||||
TDStretch.cpp
|
||||
)
|
||||
|
||||
add_library(SoundTouch STATIC ${SRCS})
|
Reference in New Issue
Block a user