SoudTouch Android cmake编译

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

目录结构


SoudTouch Android cmake编译_第1张图片
目录结构

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

你可能感兴趣的:(SoudTouch Android cmake编译)