mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/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 $@ ../..
|
|
|