mirror of
https://github.com/opencv/opencv.git
synced 2024-12-01 23:30:06 +08:00
10 lines
148 B
Bash
10 lines
148 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd `dirname $0`/..
|
||
|
|
||
|
mkdir -p build_x86
|
||
|
cd build_x86
|
||
|
|
||
|
cmake -DANDROID_ABI=x86 -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake $@ ../..
|
||
|
|