CMakeLists.txt 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include)
  10. include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include/third_part)
  11. include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include/aes)
  12. #include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include/rsa)
  13. #include_directories(src/main/cpp/json)
  14. #include_directories(src/main/cpp/encrypt)
  15. aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/ DIR_SOURCE)
  16. aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/include/third_part/json JSON_SOURCE)
  17. #aux_source_directory(src/main/cpp/json JSON_SOURCE)
  18. #aux_source_directory(src/main/cpp/encrypt ENCRYPT_SOURCE)
  19. add_library(local_crypto STATIC IMPORTED)
  20. add_library(local_openssl STATIC IMPORTED)
  21. #set_target_properties(local_crypto PROPERTIES IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/libs/${ANDROID_ABI}/libcrypto.a)
  22. #set_target_properties(local_openssl PROPERTIES IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/libs/${ANDROID_ABI}/libssl.a)
  23. add_library(
  24. eyuangame
  25. SHARED
  26. ${DIR_SOURCE}
  27. ${JSON_SOURCE}
  28. # ${ENCRYPT_SOURCE}
  29. )
  30. # Searches for a specified prebuilt library and stores the path as a
  31. # variable. Because CMake includes system libraries in the search path by
  32. # default, you only need to specify the name of the public NDK library
  33. # you want to add. CMake verifies that the library exists before
  34. # completing its build.
  35. find_library( # Sets the name of the path variable.
  36. log-lib
  37. # Specifies the name of the NDK library that
  38. # you want CMake to locate.
  39. log)
  40. # Specifies libraries CMake should link to your target library. You
  41. # can link multiple libraries, such as libraries you define in this
  42. # build script, prebuilt third-party libraries, or system libraries.
  43. target_link_libraries( # Specifies the target library.
  44. eyuangame
  45. # local_crypto
  46. # local_openssl
  47. # Links the target library to the log library
  48. # included in the NDK.
  49. ${log-lib})