mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 13:10:12 +08:00
9 lines
169 B
Bash
9 lines
169 B
Bash
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_neon
|
|
cd build_neon
|
|
|
|
cmake -DANDROID_ABI="armeabi-v7a with NEON" -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake $@ ../..
|
|
|