mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
419 B
21 lines
419 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
|
|
|
OPENCV_PLUGIN_DESTINATION=$1 |
|
OPENCV_PLUGIN_NAME=opencv_highgui_$2 |
|
CMAKE_BUILD_TYPE=${3:-Release} |
|
|
|
shift 3 || true |
|
|
|
set -x |
|
cmake -GNinja \ |
|
-DOPENCV_PLUGIN_NAME=${OPENCV_PLUGIN_NAME} \ |
|
-DOPENCV_PLUGIN_DESTINATION=${OPENCV_PLUGIN_DESTINATION} \ |
|
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} \ |
|
"$@" \ |
|
$DIR |
|
|
|
ninja -v
|
|
|