mirror of https://github.com/alibaba/MNN.git
14 lines
398 B
Bash
Executable File
14 lines
398 B
Bash
Executable File
#!/bin/bash
|
|
cmake ../../../ \
|
|
-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DANDROID_ABI="armeabi-v7a" \
|
|
-DANDROID_STL=c++_shared \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DANDROID_NATIVE_API_LEVEL=android-14 \
|
|
-DANDROID_TOOLCHAIN=clang \
|
|
-DMNN_BUILD_FOR_ANDROID_COMMAND=true \
|
|
-DNATIVE_LIBRARY_OUTPUT=. -DNATIVE_INCLUDE_OUTPUT=. $1 $2 $3
|
|
|
|
make -j4
|