CMakeLists.txt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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/buffer)
  10. aux_source_directory(src/main/cpp/ DIR_SOURCE)
  11. aux_source_directory(src/main/cpp/buffer DIR_SOURCE_BUFFER)
  12. #add_subdirectory(common)
  13. #include_directories(src/main/cpp/common)
  14. add_library(
  15. dolin-common
  16. SHARED
  17. ${DIR_SOURCE}
  18. ${DIR_SOURCE_BUFFER}
  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. dolin-common
  35. # Links the target library to the log library
  36. # included in the NDK.
  37. ${log-lib})