Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
724f5e7f
Commit
724f5e7f
authored
Jun 16, 2014
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't build CUDA modules stubs by default (use `-DBUILD_CUDA_STUBS=ON` if need them)
parent
45f21e4f
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
10 deletions
+11
-10
CMakeLists.txt
CMakeLists.txt
+1
-0
CMakeLists.txt
modules/cuda/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudaarithm/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudabgsegm/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudacodec/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudafeatures2d/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudafilters/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudaimgproc/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudaoptflow/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudastereo/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudawarping/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
724f5e7f
...
...
@@ -175,6 +175,7 @@ OCV_OPTION(BUILD_WITH_STATIC_CRT "Enables use of staticaly linked CRT for sta
OCV_OPTION
(
BUILD_FAT_JAVA_LIB
"Create fat java wrapper containing the whole OpenCV library"
ON IF NOT BUILD_SHARED_LIBS AND CMAKE_COMPILER_IS_GNUCXX
)
OCV_OPTION
(
BUILD_ANDROID_SERVICE
"Build OpenCV Manager for Google Play"
OFF IF ANDROID AND ANDROID_SOURCE_TREE
)
OCV_OPTION
(
BUILD_ANDROID_PACKAGE
"Build platform-specific package for Google Play"
OFF IF ANDROID
)
OCV_OPTION
(
BUILD_CUDA_STUBS
"Build CUDA modules stubs when no CUDA SDK"
OFF
IF
(
NOT IOS
)
)
# 3rd party libs
OCV_OPTION
(
BUILD_ZLIB
"Build zlib from source"
WIN32 OR APPLE
)
...
...
modules/cuda/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cuda
)
endif
()
...
...
modules/cudaarithm/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudaarithm
)
endif
()
...
...
modules/cudabgsegm/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudabgsegm
)
endif
()
...
...
modules/cudacodec/CMakeLists.txt
View file @
724f5e7f
if
(
IOS OR APPLE
)
if
(
IOS OR APPLE
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudacodec
)
endif
()
...
...
modules/cudafeatures2d/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudafeatures2d
)
endif
()
...
...
modules/cudafilters/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudafilters
)
endif
()
...
...
modules/cudaimgproc/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudaimgproc
)
endif
()
...
...
modules/cudaoptflow/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudaoptflow
)
endif
()
...
...
modules/cudastereo/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudastereo
)
endif
()
...
...
modules/cudawarping/CMakeLists.txt
View file @
724f5e7f
if
(
IOS
)
if
(
IOS
OR
(
NOT HAVE_CUDA AND NOT BUILD_CUDA_STUBS
)
)
ocv_module_disable
(
cudawarping
)
endif
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment