add_library( # Specifies the name of the library.
trans//你的库名称
# Sets the library as a shared library.
SHARED//可共享
# Provides a relative path to your source file(s).
src/main/jni/trans.c )//源码路径
//以下为打印
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.
trans//你的库名称
# Links the target library to the log library
# included in the NDK.
${log-lib} )
//打印引入结束