cmake_minimum_required(VERSION 3.4.1)
# add_library()可添加多个,有多少个cpp文件可添加多少个
add_library(
# 对应cpp的文件名
jni-array
# Sets the library as a shared library.
SHARED
# 对应cpp的文件名地址
src/main/cpp/jni-array.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.