mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_armeabi
|
|
cd build_armeabi
|
|
|
|
cmake -DANDROID_ABI=armeabi -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake $@ ../..
|
|
|