mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
8 lines
188 B
Bash
Executable File
8 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_android_arm
|
|
cd build_android_arm
|
|
|
|
cmake -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DCMAKE_TOOLCHAIN_FILE=../android/android.toolchain.cmake $@ ../..
|