mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_linux_arm_softfp
|
|
cd build_linux_arm_softfp
|
|
|
|
cmake -DSOFTFP=ON -DCMAKE_TOOLCHAIN_FILE=../linux/arm-gnueabi.toolchain.cmake $@ ../..
|