我正在为我的 Swift 项目使用 C++ 音频处理库,来自https://www.surina.net/soundtouch/sourcecode.html
我还在 Projects-targets-build 阶段的编译源中包含了这些 cpp 文件。
当我尝试在桥接头中导入所有库头文件时
#import "SoundTouch.h"
尝试编译时出错
Unknown type of name 'namespace' in STTypes.h
'stdexcept' file not found
我在头文件中使用命名空间
namespace soundtouch { ... }
我不能使用几个标准库也像字符串
#include <stdexcept>
#include <string>
我在这里缺少什么?