cmake - Creating a shared arm library which can be used in Android
问题 I have a project which has armeabi-v7a folder and uses libssl.a and libcrypto.a libraries. Now i am able to compile the project with the source code c++ files and use that into a project. Now i want cmake to create a shared library which i can use in any other project. I don't have much knowledge of cmake What i have tried? cmake -DCMAKE_TOOLCHAIN_FILE=$(NDK_PATH)/build/cmake/android.toolchain.cmake -DANDROID_NDK=$(NDK_PATH) -DANDROID_ABI=armeabi-v7a -DANDROID_PLATFORM=android-21 -DANDROID