mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 02:19:12 +08:00
14 lines
239 B
Bash
Executable File
14 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cmake -GNinja \
|
|
-DOPENCV_PLUGIN_NAME=opencv_highgui_$2 \
|
|
-DOPENCV_PLUGIN_DESTINATION=$1 \
|
|
-DCMAKE_BUILD_TYPE=$3 \
|
|
$DIR
|
|
|
|
ninja -v
|