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