mirror of
https://github.com/zebrajr/opencv.git
synced 2025-12-06 12:19:50 +01:00
9 lines
172 B
Bash
Executable File
9 lines
172 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 $@ ../../..
|
|
|