SoudTouch Android cmake编译

源码下载: https://gitlab.com/soundtouch/soundtouch, 源码下载之后里面有demo参考。
将下载的源码的includesource/SoundTouch目录的文件拷入

目录结构


目录结构
目录结构

cmake

cmake_minimum_required(VERSION 3.4.1)

include_directories(src/main/cpp/soundtouch/include)
include_directories(src/main/cpp/soundtouch/SoundTouch)

add_library( # Sets the name of the library.
             native-lib

             # Sets the library as a shared library.
             SHARED

             # Provides a relative path to your source file(s).
              src/main/cpp/native-lib.cpp
              src/main/cpp/soundtouch/SoundTouch/AAFilter.cpp
              src/main/cpp/soundtouch/SoundTouch/FIFOSampleBuffer.cpp
              src/main/cpp/soundtouch/SoundTouch/FIRFilter.cpp
              src/main/cpp/soundtouch/SoundTouch/cpu_detect_x86.cpp
              src/main/cpp/soundtouch/SoundTouch/sse_optimized.cpp
              src/main/cpp/soundtouch/SoundTouch/RateTransposer.cpp
              src/main/cpp/soundtouch/SoundTouch/SoundTouch.cpp
              src/main/cpp/soundtouch/SoundTouch/InterpolateCubic.cpp
              src/main/cpp/soundtouch/SoundTouch/InterpolateLinear.cpp
              src/main/cpp/soundtouch/SoundTouch/InterpolateShannon.cpp
              src/main/cpp/soundtouch/SoundTouch/TDStretch.cpp
              src/main/cpp/soundtouch/SoundTouch/PeakFinder.cpp
              )


find_library( # Sets the name of the path variable.
              log-lib

              # Specifies the name of the NDK library that
              # you want CMake to locate.
              log )


target_link_libraries( # Specifies the target library.
                       native-lib

                       # Links the target library to the log library
                       # included in the NDK.
                       ${log-lib} )

配置信息参考demo

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容