L017 android cmake的使用
2017-01-04 本文已影响821人
夏大王2019
android中c++标准的选择
C++ Standard
指定编译库的环境,其中Toolchain Default使用的是默认的CMake环境;C++ 11也就是C++环境。两种环境都可以编库,至于区别,后续会跟进,当前博文使用的是CMake环境。
Exceptions Support
如果选中复选框,则表示当前项目支持C++异常处理,如果支持,在项目Module级别的build.gradle
文件中会增加一个标识 -fexceptions
到cppFlags
属性中,并且在so库构建时,gradle会把该属性值传递给CMake进行构建。
Runtime Type Information Support
同理,选中复选框,项目支持RTTI,属性cppFlags
增加标识-frtti
CMakeLists.txt的配置
CMakeLists.txt 用于配置jni项目属性,主要用于声明CMake版本 so库名称 C/Cpp文件路径等信息。
注释
和bash中一样,使用“#”作为一行的注释。
cmake版本声明
cmake_minimum_required(VERSION 3.4.1)
添加编译目标add_library()
配置库信息,库的名字,动态库或静态库,依赖的源文件
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).
# Associated headers in the same location as their source
# file are automatically included.
src/main/cpp/native-lib.cpp
src/main/cpp/test.cpp)
STATIC:静态库,是目标文件的归档文件,在链接其它目标的时候使用。
SHARED:动态库,会被动态链接,在运行时被加载。
MODULE:模块库,是不会被链接到其它目标中的插件,但是可能会在运行时使用dlopen-系列的函数动态链接。
配置头文件路径include_directories()
include_directories("src/main/cpp")
查找链接库find_library
在指定目录下搜索一个库, 保存在变量log-lib中,如果没有指定路径,则使用默认系统路径
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
添加链接库,相同于指定-l参数
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} )