Android Studio CMakeList 中添加cpp目录下所有的 *.C *. Cpp *. h文件:
file(GLOB_RECURSE ALL_SOURCE "*.cpp" "*.c" "*.h")
add_library( # Sets the name of the library.
bladderJNI
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
#自动添加目录下的C文件
${ALL_SOURCE}
)