CMakeLists.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # For more information about using CMake with Android Studio, read the
  2. # documentation: https://d.android.com/studio/projects/add-native-code.html
  3. # Sets the minimum version of CMake required to build the native library.
  4. cmake_minimum_required(VERSION 3.4.1)
  5. # Creates and names a library, sets it as either STATIC
  6. # or SHARED, and provides the relative paths to its source code.
  7. # You can define multiple libraries, and CMake builds them for you.
  8. # Gradle automatically packages shared libraries with your APK.
  9. aux_source_directory(src/main/cpp/ DIR_SOURCE)
  10. aux_source_directory(src/main/cpp/libs DIR_LIB_SOURCE)
  11. include_directories(src/main/cpp/libs)
  12. add_library(
  13. logkit
  14. SHARED
  15. ${DIR_SOURCE}
  16. ${DIR_LIB_SOURCE}
  17. )
  18. # Searches for a specified prebuilt library and stores the path as a
  19. # variable. Because CMake includes system libraries in the search path by
  20. # default, you only need to specify the name of the public NDK library
  21. # you want to add. CMake verifies that the library exists before
  22. # completing its build.
  23. find_library( # Sets the name of the path variable.
  24. log-lib
  25. # Specifies the name of the NDK library that
  26. # you want CMake to locate.
  27. log)
  28. # Specifies libraries CMake should link to your target library. You
  29. # can link multiple libraries, such as libraries you define in this
  30. # build script, prebuilt third-party libraries, or system libraries.
  31. target_link_libraries( # Specifies the target library.
  32. logkit
  33. # Links the target library to the log library
  34. # included in the NDK.
  35. ${log-lib})