音视频随笔-生活工作点滴

NDK开发 - Android Studio 使用CMake生成

2019-07-11  本文已影响2人  Devil_Chen

直接进入主题

image.png
image.png
image.png
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

#设置JNI变量名的值为${PROJECT_SOURCE_DIR}/src/main/jni
set(JNI /${PROJECT_SOURCE_DIR}/src/main/jni)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

add_library( # Sets the name of the library.
             #设置Lib库的名字
             nativeLib

             # Sets the library as a shared library.
             SHARED

             # Provides a relative path to your source file(s).
            # 源文件(实现的文件)
             src/main/cpp/nativeLib.cpp )


#加载第三方库 SHARED->.so 或者 STATIC->.a
add_library(openssl STATIC IMPORTED )
#配置加载头文件
include_directories( ${JNI}/include)
#引入第三方.a库
set_target_properties(openssl PROPERTIES IMPORTED_LOCATION ${JNI}/libs/${ANDROID_ABI}/libcrypto.a)




# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

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 )

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
                       #设置Lib库的名字(System.Loadlibrary("libraryName")的libraryName)
                       nativeLib
                       openssl

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

项目地址->NDKTest

上一篇 下一篇

猜你喜欢

热点阅读