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
a2811d93
Commit
a2811d93
authored
Dec 08, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10253 from alalek:cmake_disable_optimization
parents
f2070c9f
cadd1a00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+4
-4
No files found.
CMakeLists.txt
View file @
a2811d93
...
...
@@ -199,14 +199,14 @@ OCV_OPTION(WITH_CUDA "Include NVidia Cuda Runtime support"
OCV_OPTION
(
WITH_CUFFT
"Include NVidia Cuda Fast Fourier Transform (FFT) library support"
ON
IF
(
NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_CUBLAS
"Include NVidia Cuda Basic Linear Algebra Subprograms (BLAS) library support"
ON
IF
(
NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_NVCUVID
"Include NVidia Video Decoding library support"
ON
IF
(
NOT IOS AND NOT APPLE
)
)
OCV_OPTION
(
WITH_EIGEN
"Include Eigen2/Eigen3 support"
ON
IF
(
NOT WINRT AND NOT CMAKE_CROSSCOMPILING
)
)
OCV_OPTION
(
WITH_EIGEN
"Include Eigen2/Eigen3 support"
(
NOT CV_DISABLE_OPTIMIZATION
)
IF
(
NOT WINRT AND NOT CMAKE_CROSSCOMPILING
)
)
OCV_OPTION
(
WITH_VFW
"Include Video for Windows support"
ON IF WIN32
)
OCV_OPTION
(
WITH_FFMPEG
"Include FFMPEG support"
ON
IF
(
NOT ANDROID AND NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_GSTREAMER
"Include Gstreamer support"
ON
IF
(
NOT ANDROID AND NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_GSTREAMER_0_10
"Enable Gstreamer 0.10 support (instead of 1.x)"
OFF
)
OCV_OPTION
(
WITH_GTK
"Include GTK support"
ON
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_GTK_2_X
"Use GTK version 2"
OFF
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_IPP
"Include Intel IPP support"
NOT MINGW
IF
(
X86_64 OR X86
)
AND NOT WINRT AND NOT IOS
)
OCV_OPTION
(
WITH_IPP
"Include Intel IPP support"
(
NOT MINGW AND NOT CV_DISABLE_OPTIMIZATION
)
IF
(
X86_64 OR X86
)
AND NOT WINRT AND NOT IOS
)
OCV_OPTION
(
WITH_HALIDE
"Include Halide support"
OFF
)
OCV_OPTION
(
WITH_JASPER
"Include JPEG2K support"
ON
IF
(
NOT IOS
)
)
OCV_OPTION
(
WITH_JPEG
"Include JPEG support"
ON
)
...
...
@@ -238,7 +238,7 @@ OCV_OPTION(WITH_MSMF "Build VideoIO with Media Foundation support" OFF
OCV_OPTION
(
WITH_XIMEA
"Include XIMEA cameras support"
OFF
IF
(
NOT ANDROID AND NOT WINRT
)
)
OCV_OPTION
(
WITH_XINE
"Include Xine support (GPL)"
OFF
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_CLP
"Include Clp support (EPL)"
OFF
)
OCV_OPTION
(
WITH_OPENCL
"Include OpenCL Runtime support"
NOT ANDROID
IF
(
NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_OPENCL
"Include OpenCL Runtime support"
(
NOT ANDROID AND NOT CV_DISABLE_OPTIMIZATION
)
IF
(
NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_OPENCL_SVM
"Include OpenCL Shared Virtual Memory support"
OFF
)
# experimental
OCV_OPTION
(
WITH_OPENCLAMDFFT
"Include AMD OpenCL FFT library support"
ON
IF
(
NOT ANDROID AND NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_OPENCLAMDBLAS
"Include AMD OpenCL BLAS library support"
ON
IF
(
NOT ANDROID AND NOT IOS AND NOT WINRT
)
)
...
...
@@ -250,7 +250,7 @@ OCV_OPTION(WITH_VA_INTEL "Include Intel VA-API/OpenCL support" OFF
OCV_OPTION
(
WITH_MFX
"Include Intel Media SDK support"
OFF
IF
((
UNIX AND NOT ANDROID
)
OR
(
WIN32 AND NOT WINRT AND NOT MINGW
))
)
OCV_OPTION
(
WITH_GDAL
"Include GDAL Support"
OFF
IF
(
NOT ANDROID AND NOT IOS AND NOT WINRT
)
)
OCV_OPTION
(
WITH_GPHOTO2
"Include gPhoto2 library support"
ON
IF
(
UNIX AND NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_LAPACK
"Include Lapack library support"
ON
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_LAPACK
"Include Lapack library support"
(
NOT CV_DISABLE_OPTIMIZATION
)
IF
(
NOT ANDROID AND NOT IOS
)
)
OCV_OPTION
(
WITH_ITT
"Include Intel ITT support"
ON
IF
(
NOT APPLE_FRAMEWORK
)
)
# OpenCV build components
...
...
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