1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

cuda: WITH_CUDA=OFF by default (need to enable it explicitly)

This commit is contained in:
Alexander Alekhin
2018-04-05 19:23:58 +00:00
parent f93c1b942a
commit 4990506948
7 changed files with 9 additions and 10 deletions
-2
View File
@@ -160,7 +160,6 @@ class Builder:
cmake_vars = dict(
CMAKE_TOOLCHAIN_FILE=self.get_toolchain_file(),
WITH_OPENCL="OFF",
WITH_CUDA="OFF",
WITH_IPP=("ON" if abi.haveIPP() else "OFF"),
WITH_TBB="ON",
BUILD_EXAMPLES="OFF",
@@ -195,7 +194,6 @@ class Builder:
cmake_vars = dict(
CMAKE_TOOLCHAIN_FILE=self.get_toolchain_file(),
WITH_OPENCL="OFF",
WITH_CUDA="OFF",
WITH_IPP="OFF",
BUILD_ANDROID_SERVICE = 'ON'
)