mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +08:00
9 lines
228 B
Bash
9 lines
228 B
Bash
#!/bin/sh
|
|
cd `dirname $0`
|
|
|
|
opencv_build_dir=`pwd`/../build_neon
|
|
mkdir -p build_neon
|
|
cd build_neon
|
|
|
|
cmake -DOpenCVDIR=$opencv_build_dir -DARM_TARGET="armeabi-v7a with NEON" -DCMAKE_TOOLCHAIN_FILE=../../android.toolchain.cmake ..
|