cmake 加载目录中多个文件
file(GLOB magick_hdrs "src/main/cpp/*.cpp")
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).
${magick_hdrs} )