CMakeLists.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. project("library_xinrui")
  10. include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include)
  11. include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/external)
  12. aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/ DIR_SOURCE)
  13. aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/external/json JSON_SOURCE)
  14. add_library(
  15. xinrui
  16. SHARED
  17. ${DIR_SOURCE}
  18. ${JSON_SOURCE}
  19. )
  20. # Searches for a specified prebuilt library and stores the path as a
  21. # variable. Because CMake includes system libraries in the search path by
  22. # default, you only need to specify the name of the public NDK library
  23. # you want to add. CMake verifies that the library exists before
  24. # completing its build.
  25. find_library( # Sets the name of the path variable.
  26. log-lib
  27. # Specifies the name of the NDK library that
  28. # you want CMake to locate.
  29. log)
  30. # Specifies libraries CMake should link to your target library. You
  31. # can link multiple libraries, such as libraries you define in this
  32. # build script, prebuilt third-party libraries, or system libraries.
  33. target_link_libraries( # Specifies the target library.
  34. xinrui
  35. # Links the target library to the log library
  36. # included in the NDK.
  37. ${log-lib})