mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 07:39:26 +01:00
Externals: Alter the soundtouch include directory.
We must not provide the /Externals directory as global include directory. Here, this yield a crash because of external minizip header and system library mismatch. Soundtouch itself recormends to include it with <SoundTouch.h> and -I/usr/include/soundtouch, so this should fit better.
This commit is contained in:
parent
ffc40c1a00
commit
239cde8aea
@ -654,7 +654,7 @@ endif()
|
|||||||
# Using static soundtouch from Externals
|
# Using static soundtouch from Externals
|
||||||
# Unable to use system soundtouch library: We require shorts, not floats.
|
# Unable to use system soundtouch library: We require shorts, not floats.
|
||||||
add_subdirectory(Externals/soundtouch)
|
add_subdirectory(Externals/soundtouch)
|
||||||
include_directories(Externals)
|
include_directories(Externals/soundtouch)
|
||||||
|
|
||||||
find_package(Cubeb)
|
find_package(Cubeb)
|
||||||
if(CUBEB_FOUND)
|
if(CUBEB_FOUND)
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
#include <soundtouch/SoundTouch.h>
|
#include <SoundTouch.h>
|
||||||
|
|
||||||
namespace AudioCommon
|
namespace AudioCommon
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user