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
2afad8b5
Commit
2afad8b5
authored
Mar 15, 2013
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn on OpenCL by default
parent
d756de17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
CMakeLists.txt
CMakeLists.txt
+6
-6
No files found.
CMakeLists.txt
View file @
2afad8b5
...
...
@@ -141,9 +141,9 @@ OCV_OPTION(WITH_V4L "Include Video 4 Linux support" ON
OCV_OPTION
(
WITH_VIDEOINPUT
"Build HighGUI with DirectShow support"
ON IF WIN32
)
OCV_OPTION
(
WITH_XIMEA
"Include XIMEA cameras support"
OFF
IF
(
NOT ANDROID AND NOT APPLE
)
)
OCV_OPTION
(
WITH_XINE
"Include Xine support (GPL)"
OFF
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_OPENCL
"Include OpenCL Runtime support"
O
FF
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_OPENCLAMDFFT
"Include AMD OpenCL FFT library support"
O
FF
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_OPENCLAMDBLAS
"Include AMD OpenCL BLAS library support"
O
FF
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_OPENCL
"Include OpenCL Runtime support"
O
N
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_OPENCLAMDFFT
"Include AMD OpenCL FFT library support"
O
N
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_OPENCLAMDBLAS
"Include AMD OpenCL BLAS library support"
O
N
IF
(
NOT ANDROID AND NOT IOS
)
)
# OpenCV build components
...
...
@@ -795,13 +795,13 @@ if(HAVE_OPENCL AND BUILD_opencv_ocl)
status
(
""
)
status
(
" OpenCL"
)
if
(
OPENCL_INCLUDE_DIR
)
status
(
" Include
:"
${
OPENCL_INCLUDE_DIR
}
)
status
(
" Include
path:"
${
OPENCL_INCLUDE_DIR
}
)
endif
()
if
(
OPENCL_LIBRARIES
)
status
(
" libraries:"
${
OPENCL_LIBRARIES
}
)
endif
()
status
(
" Use AMD
FFT:"
HAVE_CLAMDFFT THEN YES ELSE NO
)
status
(
" Use AMD
BLAS:"
HAVE_CLAMDBLAS THEN YES ELSE NO
)
status
(
" Use AMD
FFT:"
HAVE_CLAMDFFT THEN YES ELSE NO
)
status
(
" Use AMD
BLAS:"
HAVE_CLAMDBLAS THEN YES ELSE NO
)
endif
()
# ========================== python ==========================
...
...
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