mirror of
https://github.com/opencv/opencv.git
synced 2024-12-04 16:59:12 +08:00
9 lines
161 B
Bash
9 lines
161 B
Bash
|
#!/bin/sh
|
||
|
cd `dirname $0`/..
|
||
|
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
|
||
|
cmake -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DCMAKE_TOOLCHAIN_FILE=../armlinux.toolchain.cmake $@ ../../..
|
||
|
|