CMakeLists.txt 37.3 KB
Newer Older
A
Alexander Shishkov 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# ----------------------------------------------------------------------------
#  Root CMake file for OpenCV
#
#    From the off-tree build directory, invoke:
#      $ cmake <PATH_TO_OPENCV_ROOT>
#
#
#   - OCT-2008: Initial version <joseluisblancoc@gmail.com>
#
# ----------------------------------------------------------------------------

set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
A
Andrey Kamaev 已提交
13

14 15 16 17 18 19
# --------------------------------------------------------------
# Indicate CMake 2.7 and above that we don't want to mix relative
#  and absolute paths in linker lib lists.
# Run "cmake --help-policy CMP0003" for more information.
# --------------------------------------------------------------
if(COMMAND cmake_policy)
A
Andrey Kamaev 已提交
20
  cmake_policy(SET CMP0003 NEW)
21 22
endif()

23 24 25 26
# Following block can broke build in case of cross-compilng
# but CMAKE_CROSSCOMPILING variable will be set only on project(OpenCV) command
# so we will try to detect crosscompiling by presense of CMAKE_TOOLCHAIN_FILE
if(NOT CMAKE_TOOLCHAIN_FILE)
A
Andrey Kamaev 已提交
27 28 29 30 31 32
  # it _must_ go before project(OpenCV) in order to work
  if(WIN32)
    set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/install" CACHE PATH "Installation Directory")
  else()
    set(CMAKE_INSTALL_PREFIX "/usr/local" CACHE PATH "Installation Directory")
  endif()
33

A
Andrey Kamaev 已提交
34 35 36
  if(MSVC)
    set(CMAKE_USE_RELATIVE_PATHS ON CACHE INTERNAL "" FORCE)
  endif()
37 38 39
else(NOT CMAKE_TOOLCHAIN_FILE)
  #Android: set output folder to ${CMAKE_BINARY_DIR}
  set( LIBRARY_OUTPUT_PATH_ROOT ${CMAKE_BINARY_DIR} CACHE PATH "root for library output, set this to change where android libs are compiled to" )
40
  # any crosscompiling
41
  set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/install" CACHE PATH "Installation Directory")
42 43 44 45 46
endif(NOT CMAKE_TOOLCHAIN_FILE)

# --------------------------------------------------------------
# Top level OpenCV project
# --------------------------------------------------------------
V
Vadim Pisarevsky 已提交
47 48 49 50
if(CMAKE_GENERATOR MATCHES Xcode AND XCODE_VERSION VERSION_GREATER 4.3)
  cmake_minimum_required(VERSION 2.8.8)
elseif(IOS)
  cmake_minimum_required(VERSION 2.8.0)
51
else()
V
Vadim Pisarevsky 已提交
52
  cmake_minimum_required(VERSION 2.6.3)
53
endif()
A
Andrey Kamaev 已提交
54

55
# must go before the project command
A
Alexander Shishkov 已提交
56
set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Configs" FORCE)
57
if(DEFINED CMAKE_BUILD_TYPE AND CMAKE_VERSION VERSION_GREATER "2.8")
A
Andrey Kamaev 已提交
58
  set_property( CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${CMAKE_CONFIGURATION_TYPES} )
A
Andrey Kamaev 已提交
59
endif()
60

V
Vadim Pisarevsky 已提交
61
project(OpenCV CXX C)
A
Andrey Kamaev 已提交
62

63
include(cmake/OpenCVUtils.cmake)
64

65 66 67 68 69 70 71 72
# ----------------------------------------------------------------------------
# Break in case of popular CMake configuration mistakes
# ----------------------------------------------------------------------------
if(NOT CMAKE_SIZEOF_VOID_P GREATER 0)
  message(FATAL_ERROR "CMake fails to deterimine the bitness of target platform.
  Please check your CMake and compiler installation. If you are crosscompiling then ensure that your CMake toolchain file correctly sets the compiler details.")
endif()

73
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
74
# Detect compiler and target platform architecture
A
Andrey Kamaev 已提交
75
# ----------------------------------------------------------------------------
76
include(cmake/OpenCVDetectCXXCompiler.cmake)
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
# Add these standard paths to the search paths for FIND_LIBRARY
# to find libraries from these locations first
if(UNIX AND NOT ANDROID)
  if(X86_64 OR CMAKE_SIZEOF_VOID_P EQUAL 8)
    if(EXISTS /lib64)
      list(APPEND CMAKE_LIBRARY_PATH /lib64)
    else()
      list(APPEND CMAKE_LIBRARY_PATH /lib)
    endif()
    if(EXISTS /usr/lib64)
      list(APPEND CMAKE_LIBRARY_PATH /usr/lib64)
    else()
      list(APPEND CMAKE_LIBRARY_PATH /usr/lib)
    endif()
  elseif(X86 OR CMAKE_SIZEOF_VOID_P EQUAL 4)
    if(EXISTS /lib32)
      list(APPEND CMAKE_LIBRARY_PATH /lib32)
    else()
      list(APPEND CMAKE_LIBRARY_PATH /lib)
    endif()
    if(EXISTS /usr/lib32)
      list(APPEND CMAKE_LIBRARY_PATH /usr/lib32)
    else()
      list(APPEND CMAKE_LIBRARY_PATH /usr/lib)
    endif()
  endif()
endif()

106

107
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
108
# OpenCV cmake options
109
# ----------------------------------------------------------------------------
110 111 112

# Optional 3rd party components
# ===================================================
V
Vladislav Vinogradov 已提交
113
OCV_OPTION(WITH_1394           "Include IEEE1394 support"                    ON   IF (UNIX AND NOT ANDROID AND NOT IOS AND NOT CARMA) )
114 115 116 117
OCV_OPTION(WITH_AVFOUNDATION   "Use AVFoundation for Video I/O"              ON   IF IOS)
OCV_OPTION(WITH_CARBON         "Use Carbon for UI instead of Cocoa"          OFF  IF APPLE )
OCV_OPTION(WITH_CUDA           "Include NVidia Cuda Runtime support"         ON   IF (CMAKE_VERSION VERSION_GREATER "2.8" AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_CUFFT          "Include NVidia Cuda Fast Fourier Transform (FFT) library support"            ON  IF (CMAKE_VERSION VERSION_GREATER "2.8" AND NOT ANDROID AND NOT IOS) )
V
Vladislav Vinogradov 已提交
118 119
OCV_OPTION(WITH_CUBLAS         "Include NVidia Cuda Basic Linear Algebra Subprograms (BLAS) library support" OFF IF (CMAKE_VERSION VERSION_GREATER "2.8" AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_NVCUVID        "Include NVidia Video Decoding library support"                               OFF IF (CMAKE_VERSION VERSION_GREATER "2.8" AND NOT ANDROID AND NOT IOS AND NOT APPLE) )
120
OCV_OPTION(WITH_EIGEN          "Include Eigen2/Eigen3 support"               ON)
M
marina.kolpakova 已提交
121 122 123
OCV_OPTION(WITH_FFMPEG         "Include FFMPEG support"                      ON   IF (NOT ANDROID AND NOT IOS))
OCV_OPTION(WITH_GSTREAMER      "Include Gstreamer support"                   ON   IF (UNIX AND NOT APPLE AND NOT ANDROID) )
OCV_OPTION(WITH_GTK            "Include GTK support"                         ON   IF (UNIX AND NOT APPLE AND NOT ANDROID) )
124 125 126 127
OCV_OPTION(WITH_IPP            "Include Intel IPP support"                   OFF  IF (MSVC OR X86 OR X86_64) )
OCV_OPTION(WITH_JASPER         "Include JPEG2K support"                      ON   IF (NOT IOS) )
OCV_OPTION(WITH_JPEG           "Include JPEG support"                        ON   IF (NOT IOS) )
OCV_OPTION(WITH_OPENEXR        "Include ILM support via OpenEXR"             ON   IF (NOT IOS) )
M
marina.kolpakova 已提交
128 129
OCV_OPTION(WITH_OPENGL         "Include OpenGL support"                      OFF  IF (NOT ANDROID AND NOT APPLE) )
OCV_OPTION(WITH_OPENNI         "Include OpenNI support"                      OFF  IF (NOT ANDROID AND NOT IOS) )
130
OCV_OPTION(WITH_PNG            "Include PNG support"                         ON   IF (NOT IOS) )
M
marina.kolpakova 已提交
131 132
OCV_OPTION(WITH_PVAPI          "Include Prosilica GigE support"              ON   IF (NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_QT             "Build with Qt Backend support"               OFF  IF (NOT ANDROID AND NOT IOS) )
133
OCV_OPTION(WITH_QUICKTIME      "Use QuickTime for Video I/O insted of QTKit" OFF  IF APPLE )
M
marina.kolpakova 已提交
134
OCV_OPTION(WITH_TBB            "Include Intel TBB support"                   OFF  IF (NOT IOS) )
135
OCV_OPTION(WITH_CSTRIPES       "Include C= support"                          OFF  IF WIN32 )
136
OCV_OPTION(WITH_TIFF           "Include TIFF support"                        ON   IF (NOT IOS) )
M
marina.kolpakova 已提交
137 138
OCV_OPTION(WITH_UNICAP         "Include Unicap support (GPL)"                OFF  IF (UNIX AND NOT APPLE AND NOT ANDROID) )
OCV_OPTION(WITH_V4L            "Include Video 4 Linux support"               ON   IF (UNIX AND NOT APPLE AND NOT ANDROID) )
139
OCV_OPTION(WITH_VIDEOINPUT     "Build HighGUI with DirectShow support"       ON   IF WIN32 )
M
marina.kolpakova 已提交
140 141
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) )
142
OCV_OPTION(WITH_CLP            "Include Clp support (EPL)"                   OFF)
V
Vladislav Vinogradov 已提交
143 144 145
OCV_OPTION(WITH_OPENCL         "Include OpenCL Runtime support"              OFF  IF (NOT ANDROID AND NOT IOS AND NOT CARMA) )
OCV_OPTION(WITH_OPENCLAMDFFT   "Include AMD OpenCL FFT library support"      OFF  IF (NOT ANDROID AND NOT IOS AND NOT CARMA) )
OCV_OPTION(WITH_OPENCLAMDBLAS  "Include AMD OpenCL BLAS library support"     OFF  IF (NOT ANDROID AND NOT IOS AND NOT CARMA) )
146

147 148 149

# OpenCV build components
# ===================================================
M
marina.kolpakova 已提交
150
OCV_OPTION(BUILD_SHARED_LIBS        "Build shared libraries (.dll/.so) instead of static ones (.lib/.a)" NOT (ANDROID OR IOS) )
151 152 153 154 155 156
OCV_OPTION(BUILD_ANDROID_EXAMPLES   "Build examples for Android platform"         ON  IF ANDROID )
OCV_OPTION(BUILD_DOCS               "Create build rules for OpenCV Documentation" ON )
OCV_OPTION(BUILD_EXAMPLES           "Build all examples"                          OFF )
OCV_OPTION(BUILD_PACKAGE            "Enables 'make package_source' command"       ON )
OCV_OPTION(BUILD_PERF_TESTS         "Build performance tests"                     ON  IF (NOT IOS) )
OCV_OPTION(BUILD_TESTS              "Build accuracy & regression tests"           ON  IF (NOT IOS) )
157
OCV_OPTION(BUILD_WITH_DEBUG_INFO    "Include debug info into debug libs (not MSCV only)" ON )
158
OCV_OPTION(BUILD_WITH_STATIC_CRT    "Enables use of staticaly linked CRT for staticaly linked OpenCV" ON IF MSVC )
159
OCV_OPTION(BUILD_FAT_JAVA_LIB       "Create fat java wrapper containing the whole OpenCV library" ON IF ANDROID AND NOT BUILD_SHARED_LIBS AND CMAKE_COMPILER_IS_GNUCXX )
160
OCV_OPTION(BUILD_ANDROID_SERVICE    "Build OpenCV Manager for Google Play" OFF IF ANDROID AND ANDROID_SOURCE_TREE )
161
OCV_OPTION(BUILD_ANDROID_PACKAGE    "Build platform-specific package for Google Play" OFF IF ANDROID )
A
Andrey Kamaev 已提交
162

163
# 3rd party libs
V
Vladislav Vinogradov 已提交
164 165 166 167 168 169
OCV_OPTION(BUILD_ZLIB               "Build zlib from source"         WIN32 OR APPLE OR CARMA )
OCV_OPTION(BUILD_TIFF               "Build libtiff from source"      WIN32 OR ANDROID OR APPLE OR CARMA )
OCV_OPTION(BUILD_JASPER             "Build libjasper from source"    WIN32 OR ANDROID OR APPLE OR CARMA )
OCV_OPTION(BUILD_JPEG               "Build libjpeg from source"      WIN32 OR ANDROID OR APPLE OR CARMA )
OCV_OPTION(BUILD_PNG                "Build libpng from source"       WIN32 OR ANDROID OR APPLE OR CARMA )
OCV_OPTION(BUILD_OPENEXR            "Build openexr from source"      WIN32 OR ANDROID OR APPLE OR CARMA )
170

171

172 173 174 175
# OpenCV installation options
# ===================================================
OCV_OPTION(INSTALL_C_EXAMPLES       "Install C examples"        OFF )
OCV_OPTION(INSTALL_PYTHON_EXAMPLES  "Install Python examples"   OFF )
176
OCV_OPTION(INSTALL_ANDROID_EXAMPLES "Install Android examples"  OFF IF ANDROID )
A
Andrey Kamaev 已提交
177
OCV_OPTION(INSTALL_TO_MANGLED_PATHS "Enables mangled install paths, that help with side by side installs." OFF IF (UNIX AND NOT ANDROID AND NOT IOS AND BUILD_SHARED_LIBS) )
178

179

180 181 182
# OpenCV build options
# ===================================================
OCV_OPTION(ENABLE_PRECOMPILED_HEADERS "Use precompiled headers"                                  ON   IF (NOT IOS) )
183
OCV_OPTION(ENABLE_SOLUTION_FOLDERS    "Solution folder in Visual Studio or in other IDEs"        (MSVC_IDE OR CMAKE_GENERATOR MATCHES Xcode) IF (CMAKE_VERSION VERSION_GREATER "2.8.0") )
184 185 186 187
OCV_OPTION(ENABLE_PROFILING           "Enable profiling in the GCC compiler (Add flags: -g -pg)" OFF  IF CMAKE_COMPILER_IS_GNUCXX )
OCV_OPTION(ENABLE_OMIT_FRAME_POINTER  "Enable -fomit-frame-pointer for GCC"                      ON   IF CMAKE_COMPILER_IS_GNUCXX )
OCV_OPTION(ENABLE_POWERPC             "Enable PowerPC for GCC"                                   ON   IF (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_SYSTEM_PROCESSOR MATCHES powerpc.*) )
OCV_OPTION(ENABLE_FAST_MATH           "Enable -ffast-math (not recommended for GCC 4.6.x)"       OFF  IF (CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
A
Andrey Kamaev 已提交
188 189 190
OCV_OPTION(ENABLE_SSE                 "Enable SSE instructions"                                  ON   IF ((MSVC OR CMAKE_COMPILER_IS_GNUCXX) AND (X86 OR X86_64)) )
OCV_OPTION(ENABLE_SSE2                "Enable SSE2 instructions"                                 ON   IF ((MSVC OR CMAKE_COMPILER_IS_GNUCXX) AND (X86 OR X86_64)) )
OCV_OPTION(ENABLE_SSE3                "Enable SSE3 instructions"                                 ON   IF ((CV_ICC OR CMAKE_COMPILER_IS_GNUCXX) AND (X86 OR X86_64)) )
191
OCV_OPTION(ENABLE_SSSE3               "Enable SSSE3 instructions"                                OFF  IF (CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
A
Andrey Kamaev 已提交
192
OCV_OPTION(ENABLE_SSE41               "Enable SSE4.1 instructions"                               OFF  IF ((CV_ICC OR CMAKE_COMPILER_IS_GNUCXX) AND (X86 OR X86_64)) )
193
OCV_OPTION(ENABLE_SSE42               "Enable SSE4.2 instructions"                               OFF  IF (CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
194
OCV_OPTION(ENABLE_AVX                 "Enable AVX instructions"                                  OFF  IF ((MSVC OR CMAKE_COMPILER_IS_GNUCXX) AND (X86 OR X86_64)) )
195
OCV_OPTION(ENABLE_NOISY_WARNINGS      "Show all warnings even if they are too noisy"             OFF )
196
OCV_OPTION(OPENCV_WARNINGS_ARE_ERRORS "Treat warnings as errors"                                 OFF )
197

198

199 200 201 202 203 204
# uncategorized options
# ===================================================
OCV_OPTION(CMAKE_VERBOSE "Verbose mode" OFF )

# backward compatibility
# ===================================================
205
include(cmake/OpenCVLegacyOptions.cmake OPTIONAL)
A
Andrey Kamaev 已提交
206

207

A
Alexander Shishkov 已提交
208
# ----------------------------------------------------------------------------
209
#  Get actual OpenCV version number from sources
A
Alexander Shishkov 已提交
210
# ----------------------------------------------------------------------------
211
include(cmake/OpenCVVersion.cmake)
A
Alexander Shishkov 已提交
212 213


A
Andrey Kamaev 已提交
214 215 216
# ----------------------------------------------------------------------------
#  Build & install layouts
# ----------------------------------------------------------------------------
217

A
Andrey Kamaev 已提交
218
# Save libs and executables in the same place
A
Andrey Kamaev 已提交
219
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin" CACHE PATH "Output directory for applications" )
A
Andrey Kamaev 已提交
220

221
if(ANDROID OR WIN32)
222
  set(OPENCV_DOC_INSTALL_PATH doc)
A
Andrey Kamaev 已提交
223
elseif(INSTALL_TO_MANGLED_PATHS)
224
  set(OPENCV_DOC_INSTALL_PATH share/OpenCV-${OPENCV_VERSION}/doc)
A
Andrey Kamaev 已提交
225
else()
226
  set(OPENCV_DOC_INSTALL_PATH share/OpenCV/doc)
A
Andrey Kamaev 已提交
227 228 229
endif()

if(ANDROID)
230 231 232 233 234 235
  set(LIBRARY_OUTPUT_PATH         "${OpenCV_BINARY_DIR}/lib/${ANDROID_NDK_ABI_NAME}")
  set(3P_LIBRARY_OUTPUT_PATH      "${OpenCV_BINARY_DIR}/3rdparty/lib/${ANDROID_NDK_ABI_NAME}")
  set(OPENCV_LIB_INSTALL_PATH     sdk/native/libs/${ANDROID_NDK_ABI_NAME})
  set(OPENCV_3P_LIB_INSTALL_PATH  sdk/native/3rdparty/libs/${ANDROID_NDK_ABI_NAME})
  set(OPENCV_CONFIG_INSTALL_PATH  sdk/native/jni)
  set(OPENCV_INCLUDE_INSTALL_PATH sdk/native/jni/include)
A
Andrey Kamaev 已提交
236
else()
237 238 239 240 241 242 243 244 245 246 247 248
  set(LIBRARY_OUTPUT_PATH         "${OpenCV_BINARY_DIR}/lib")
  set(3P_LIBRARY_OUTPUT_PATH      "${OpenCV_BINARY_DIR}/3rdparty/lib${LIB_SUFFIX}")
  set(OPENCV_LIB_INSTALL_PATH     lib${LIB_SUFFIX})
  set(OPENCV_3P_LIB_INSTALL_PATH  share/OpenCV/3rdparty/${OPENCV_LIB_INSTALL_PATH})
  set(OPENCV_INCLUDE_INSTALL_PATH include)

  math(EXPR SIZEOF_VOID_P_BITS "8 * ${CMAKE_SIZEOF_VOID_P}")
  if(LIB_SUFFIX AND NOT SIZEOF_VOID_P_BITS EQUAL LIB_SUFFIX)
    set(OPENCV_CONFIG_INSTALL_PATH lib${LIB_SUFFIX}/cmake/opencv)
  else()
    set(OPENCV_CONFIG_INSTALL_PATH share/OpenCV)
  endif()
A
Andrey Kamaev 已提交
249 250 251 252 253
endif()

set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${OPENCV_LIB_INSTALL_PATH}")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

254
if(INSTALL_TO_MANGLED_PATHS)
A
Andrey Kamaev 已提交
255
  set(OPENCV_INCLUDE_INSTALL_PATH ${OPENCV_INCLUDE_INSTALL_PATH}/opencv-${OPENCV_VERSION})
256 257 258 259 260 261 262 263 264 265 266 267
endif()

if(WIN32)
  # Postfix of DLLs:
  set(OPENCV_DLLVERSION "${OPENCV_VERSION_MAJOR}${OPENCV_VERSION_MINOR}${OPENCV_VERSION_PATCH}")
  set(OPENCV_DEBUG_POSTFIX d)
else()
  # Postfix of so's:
  set(OPENCV_DLLVERSION "")
  set(OPENCV_DEBUG_POSTFIX "")
endif()

A
Andrey Kamaev 已提交
268
if(DEFINED CMAKE_DEBUG_POSTFIX)
269 270 271
  set(OPENCV_DEBUG_POSTFIX "${CMAKE_DEBUG_POSTFIX}")
endif()

272 273 274 275
if(CMAKE_VERBOSE)
  set(CMAKE_VERBOSE_MAKEFILE 1)
endif()

A
Andrey Kamaev 已提交
276 277 278 279 280 281

# ----------------------------------------------------------------------------
#  Path for build/platform -specific headers
# ----------------------------------------------------------------------------
set(OPENCV_CONFIG_FILE_INCLUDE_DIR "${CMAKE_BINARY_DIR}/" CACHE PATH "Where to create the platform-dependant cvconfig.h")
add_definitions(-DHAVE_CVCONFIG_H)
282
ocv_include_directories(${OPENCV_CONFIG_FILE_INCLUDE_DIR})
A
Andrey Kamaev 已提交
283 284


A
Alexander Shishkov 已提交
285
# ----------------------------------------------------------------------------
286 287 288 289 290 291
#  Autodetect if we are in a GIT repository
# ----------------------------------------------------------------------------

# don't use FindGit because it requires CMake 2.8.2
set(git_names git eg) # eg = easy git
# Prefer .cmd variants on Windows unless running in a Makefile in the MSYS shell
292
if(CMAKE_HOST_WIN32)
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
  if(NOT CMAKE_GENERATOR MATCHES "MSYS")
    set(git_names git.cmd git eg.cmd eg)
  endif()
endif()

find_host_program(GIT_EXECUTABLE NAMES ${git_names} PATH_SUFFIXES Git/cmd Git/bin DOC "git command line client")
mark_as_advanced(GIT_EXECUTABLE)

if(GIT_EXECUTABLE)
  execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD
    WORKING_DIRECTORY "${OpenCV_SOURCE_DIR}"
    OUTPUT_VARIABLE OPENCV_GIT_HASH_SORT
    RESULT_VARIABLE GIT_RESULT
    ERROR_QUIET
    OUTPUT_STRIP_TRAILING_WHITESPACE
  )
  if(GIT_RESULT EQUAL 0)
    set(OPENCV_VCSVERSION "commit:${OPENCV_GIT_HASH_SORT}")
  else()
    set(OPENCV_VCSVERSION "exported")
  endif()
A
Alexander Shishkov 已提交
314
else()
315 316
  # We don't have git:
  set(OPENCV_VCSVERSION "")
A
Alexander Shishkov 已提交
317 318
endif()

A
Andrey Kamaev 已提交
319

320 321 322 323
# ----------------------------------------------------------------------------
# OpenCV compiler and linker options
# ----------------------------------------------------------------------------
# In case of Makefiles if the user does not setup CMAKE_BUILD_TYPE, assume it's Release:
V
Vadim Pisarevsky 已提交
324
if(CMAKE_GENERATOR MATCHES "Makefiles|Ninja" AND "${CMAKE_BUILD_TYPE}" STREQUAL "")
325 326 327
  set(CMAKE_BUILD_TYPE Release)
endif()

328
include(cmake/OpenCVCompilerOptions.cmake)
A
Andrey Kamaev 已提交
329

330

331 332 333 334 335
# ----------------------------------------------------------------------------
# Use statically or dynamically linked CRT?
# Default: dynamic
# ----------------------------------------------------------------------------
if(MSVC)
336
  include(cmake/OpenCVCRTLinkage.cmake)
337 338
endif(MSVC)

339 340 341 342
if(WIN32 AND NOT MINGW)
  add_definitions(-D_VARIADIC_MAX=10)
endif(WIN32 AND NOT MINGW)

343

A
Alexander Shishkov 已提交
344 345 346
# ----------------------------------------------------------------------------
#       CHECK FOR SYSTEM LIBRARIES, OPTIONS, ETC..
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
347 348 349 350
if(UNIX)
  include(cmake/OpenCVFindPkgConfig.cmake OPTIONAL)
  include(CheckFunctionExists)
  include(CheckIncludeFile)
351

352 353 354 355 356 357 358
  if(NOT APPLE)
    CHECK_INCLUDE_FILE(alloca.h HAVE_ALLOCA_H)
    CHECK_FUNCTION_EXISTS(alloca HAVE_ALLOCA)
    CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
    CHECK_INCLUDE_FILE(pthread.h HAVE_LIBPTHREAD)
    if(ANDROID)
      set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} dl m log)
359
    elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|NetBSD|DragonFly")
360 361 362 363 364 365 366
      set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} m pthread)
    else()
      set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} dl m pthread rt)
    endif()
  else()
    add_definitions(-DHAVE_ALLOCA -DHAVE_ALLOCA_H -DHAVE_LIBPTHREAD -DHAVE_UNISTD_H)
  endif()
A
Andrey Kamaev 已提交
367
endif()
A
Alexander Shishkov 已提交
368

369 370
include(cmake/OpenCVPCHSupport.cmake)
include(cmake/OpenCVModule.cmake)
A
Alexander Shishkov 已提交
371

A
Andrey Kamaev 已提交
372
# ----------------------------------------------------------------------------
373
#  Detect 3rd-party libraries
A
Andrey Kamaev 已提交
374
# ----------------------------------------------------------------------------
375

376 377 378 379
include(cmake/OpenCVFindLibsGrfmt.cmake)
include(cmake/OpenCVFindLibsGUI.cmake)
include(cmake/OpenCVFindLibsVideo.cmake)
include(cmake/OpenCVFindLibsPerf.cmake)
380

A
Alexander Shishkov 已提交
381

382 383 384
# ----------------------------------------------------------------------------
#  Detect other 3rd-party libraries/tools
# ----------------------------------------------------------------------------
385

386 387
# --- LATEX for pdf documentation ---
if(BUILD_DOCS)
388
  include(cmake/OpenCVFindLATEX.cmake)
389
endif(BUILD_DOCS)
390

391
# --- Python Support ---
392
include(cmake/OpenCVDetectPython.cmake)
A
Alexander Shishkov 已提交
393

394
# --- Java Support ---
395
include(cmake/OpenCVDetectApacheAnt.cmake)
396
if(ANDROID)
397
  include(cmake/OpenCVDetectAndroidSDK.cmake)
398

399 400
  if(NOT ANDROID_TOOLS_Pkg_Revision GREATER 13)
    message(WARNING "OpenCV requires Android SDK tools revision 14 or newer. Otherwise tests and samples will no be compiled.")
A
Andrey Kamaev 已提交
401
  endif()
402 403 404
elseif(ANT_EXECUTABLE)
  find_package(JNI)
endif()
405

406 407 408 409
if(ANDROID AND ANDROID_EXECUTABLE AND ANT_EXECUTABLE AND (ANT_VERSION VERSION_GREATER 1.7) AND (ANDROID_TOOLS_Pkg_Revision GREATER 13))
  SET(CAN_BUILD_ANDROID_PROJECTS TRUE)
else()
  SET(CAN_BUILD_ANDROID_PROJECTS FALSE)
410
endif()
A
Alexander Shishkov 已提交
411

412 413
# --- OpenCL ---
if(WITH_OPENCL)
414
  include(cmake/OpenCVDetectOpenCL.cmake)
415 416 417
  if(OPENCL_FOUND)
    set(HAVE_OPENCL 1)
  endif()
418 419 420 421 422 423
  if(WITH_OPENCLAMDFFT)
    set(HAVE_CLAMDFFT 1)
  endif()
  if(WITH_OPENCLAMDBLAS)
    set(HAVE_CLAMDBLAS 1)
  endif()
424
endif()
A
Alexander Shishkov 已提交
425

A
Andrey Kamaev 已提交
426 427 428 429 430 431
# ----------------------------------------------------------------------------
# Solution folders:
# ----------------------------------------------------------------------------
if(ENABLE_SOLUTION_FOLDERS)
  set_property(GLOBAL PROPERTY USE_FOLDERS ON)
  set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "CMakeTargets")
432 433
endif()

A
Andrey Kamaev 已提交
434
# Extra OpenCV targets: uninstall, package_source, perf, etc.
435
include(cmake/OpenCVExtraTargets.cmake)
A
Alexander Shishkov 已提交
436

437

A
Andrey Kamaev 已提交
438 439 440
# ----------------------------------------------------------------------------
# Process subdirectories
# ----------------------------------------------------------------------------
A
Alexander Shishkov 已提交
441

A
Andrey Kamaev 已提交
442 443
# opencv.hpp and legacy headers
add_subdirectory(include)
444

A
Andrey Kamaev 已提交
445 446
# OpenCV modules
add_subdirectory(modules)
A
Alexander Shishkov 已提交
447

A
Andrey Kamaev 已提交
448 449
# Generate targets for documentation
add_subdirectory(doc)
450

A
Andrey Kamaev 已提交
451 452
# various data that is used by cv libraries and/or demo applications.
add_subdirectory(data)
A
Andrey Kamaev 已提交
453

A
Andrey Kamaev 已提交
454 455
# extra applications
add_subdirectory(apps)
456

A
Andrey Kamaev 已提交
457 458 459
# examples
if(BUILD_EXAMPLES OR BUILD_ANDROID_EXAMPLES OR INSTALL_PYTHON_EXAMPLES)
  add_subdirectory(samples)
A
Alexander Shishkov 已提交
460 461
endif()

462
if(ANDROID)
A
Andrey Pavlenko 已提交
463 464 465 466 467 468
  add_subdirectory(android/service)
endif()

if(BUILD_ANDROID_PACKAGE)
  add_subdirectory(android/package)
endif()
469

A
Alexander Smorkalov 已提交
470
if (ANDROID)
471
  add_subdirectory(android/libinfo)
A
Andrey Pavlenko 已提交
472
endif()
473

A
Alexander Shishkov 已提交
474
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
475
# Finalization: generate configuration-based files
A
Alexander Shishkov 已提交
476
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
477
ocv_track_build_dependencies()
A
Alexander Shishkov 已提交
478

A
Andrey Kamaev 已提交
479
# Generate platform-dependent and configuration-dependent headers
480
include(cmake/OpenCVGenHeaders.cmake)
A
Alexander Shishkov 已提交
481

A
Andrey Kamaev 已提交
482
# Generate opencv.pc for pkg-config command
483
include(cmake/OpenCVGenPkgconfig.cmake)
A
Alexander Shishkov 已提交
484

A
Andrey Kamaev 已提交
485
# Generate OpenCV.mk for ndk-build (Android build tool)
486
include(cmake/OpenCVGenAndroidMK.cmake)
487

A
Andrey Kamaev 已提交
488
# Generate OpenCVСonfig.cmake and OpenCVConfig-version.cmake for cmake projects
489
include(cmake/OpenCVGenConfig.cmake)
A
Alexander Shishkov 已提交
490

491

A
Alexander Shishkov 已提交
492
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
493
# Summary:
A
Alexander Shishkov 已提交
494
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
495
status("")
496
status("General configuration for OpenCV ${OPENCV_VERSION} =====================================")
497 498
if(OPENCV_VCSVERSION)
  status("  Version control:" ${OPENCV_VCSVERSION})
499
endif()
500

501
# ========================== build platform ==========================
A
Andrey Kamaev 已提交
502
status("")
503 504
status("  Platform:")
status("    Host:"             ${CMAKE_HOST_SYSTEM_NAME} ${CMAKE_HOST_SYSTEM_VERSION} ${CMAKE_HOST_SYSTEM_PROCESSOR})
505
if(CMAKE_CROSSCOMPILING)
506
  status("    Target:"         ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR})
507
endif()
508 509 510 511 512 513 514 515 516
status("    CMake:"            ${CMAKE_VERSION})
status("    CMake generator:"  ${CMAKE_GENERATOR})
status("    CMake build tool:" ${CMAKE_BUILD_TOOL})
if(MSVC)
  status("    MSVC:"           ${MSVC_VERSION})
endif()
if(CMAKE_GENERATOR MATCHES Xcode)
  status("    Xcode:"          ${XCODE_VERSION})
endif()
V
Vadim Pisarevsky 已提交
517 518 519
if(NOT CMAKE_GENERATOR MATCHES "Xcode|Visual Studio")
  status("    Configuration:"  ${CMAKE_BUILD_TYPE})
endif()
520

521
# ========================== C/C++ options ==========================
522
status("")
523
status("  C/C++:")
A
Andrey Kamaev 已提交
524
status("    Built as dynamic libs?:" BUILD_SHARED_LIBS THEN YES ELSE NO)
525
status("    C++ Compiler:"           CMAKE_COMPILER_IS_GNUCXX THEN "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1} (ver ${CMAKE_GCC_REGEX_VERSION})" ELSE "${CMAKE_CXX_COMPILER}" )
A
Andrey Kamaev 已提交
526 527
status("    C++ flags (Release):"    ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE})
status("    C++ flags (Debug):"      ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG})
528
status("    C Compiler:"             ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1})
529 530
status("    C flags (Release):"      ${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_RELEASE})
status("    C flags (Debug):"        ${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_DEBUG})
A
Alexander Shishkov 已提交
531
if(WIN32)
532 533
  status("    Linker flags (Release):" ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE})
  status("    Linker flags (Debug):"   ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_DEBUG})
A
Alexander Shishkov 已提交
534
else()
535 536
  status("    Linker flags (Release):" ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_RELEASE})
  status("    Linker flags (Debug):"   ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_DEBUG})
A
Alexander Shishkov 已提交
537
endif()
538
status("    Precompiled headers:"     PCHSupport_FOUND AND ENABLE_PRECOMPILED_HEADERS THEN YES ELSE NO)
A
Alexander Shishkov 已提交
539

540
# ========================== OpenCV modules ==========================
A
Andrey Kamaev 已提交
541 542 543 544 545
status("")
status("  OpenCV modules:")
string(REPLACE "opencv_" "" OPENCV_MODULES_BUILD_ST          "${OPENCV_MODULES_BUILD}")
string(REPLACE "opencv_" "" OPENCV_MODULES_DISABLED_USER_ST  "${OPENCV_MODULES_DISABLED_USER}")
string(REPLACE "opencv_" "" OPENCV_MODULES_DISABLED_FORCE_ST "${OPENCV_MODULES_DISABLED_FORCE}")
546 547 548 549 550 551 552 553 554 555 556 557
set(OPENCV_MODULES_DISABLED_AUTO_ST "")
foreach(m ${OPENCV_MODULES_DISABLED_AUTO})
  set(__mdeps "")
  foreach(d ${OPENCV_MODULE_${m}_DEPS})
    if(d MATCHES "^opencv_" AND NOT HAVE_${d})
      list(APPEND __mdeps ${d})
    endif()
  endforeach()
  list(APPEND OPENCV_MODULES_DISABLED_AUTO_ST "${m}(deps: ${__mdeps})")
endforeach()
string(REPLACE "opencv_" "" OPENCV_MODULES_DISABLED_AUTO_ST  "${OPENCV_MODULES_DISABLED_AUTO_ST}")

558 559 560 561
status("    To be built:"            OPENCV_MODULES_BUILD          THEN ${OPENCV_MODULES_BUILD_ST}          ELSE "-")
status("    Disabled:"               OPENCV_MODULES_DISABLED_USER  THEN ${OPENCV_MODULES_DISABLED_USER_ST}  ELSE "-")
status("    Disabled by dependency:" OPENCV_MODULES_DISABLED_AUTO  THEN ${OPENCV_MODULES_DISABLED_AUTO_ST}  ELSE "-")
status("    Unavailable:"            OPENCV_MODULES_DISABLED_FORCE THEN ${OPENCV_MODULES_DISABLED_FORCE_ST} ELSE "-")
A
Andrey Kamaev 已提交
562

563
# ========================== Android details ==========================
564
if(ANDROID)
565 566 567 568 569 570 571 572 573 574 575 576
  status("")
  status("  Android: ")
  status("    Android ABI:" ${ANDROID_ABI})
  status("    Native API level:" android-${ANDROID_NATIVE_API_LEVEL})
  status("    SDK target:" "${ANDROID_SDK_TARGET}")
  if(BUILD_WITH_ANDROID_NDK)
    status("    Android NDK:" "${ANDROID_NDK} (toolchain: ${ANDROID_TOOLCHAIN_NAME})")
  elseif(BUILD_WITH_STANDALONE_TOOLCHAIN)
    status("    Android toolchain:" "${ANDROID_STANDALONE_TOOLCHAIN}")
  endif()
  status("    android tool:"  ANDROID_EXECUTABLE  THEN "${ANDROID_EXECUTABLE} (${ANDROID_TOOLS_Pkg_Desc})" ELSE NO)
  status("    ant:"           ANT_EXECUTABLE      THEN "${ANT_EXECUTABLE} (ver ${ANT_VERSION})"            ELSE NO)
A
Andrey Kamaev 已提交
577
  status("    Google Play package:" BUILD_ANDROID_PACKAGE THEN YES ELSE NO)
578 579
endif()

580
# ========================== GUI ==========================
A
Andrey Kamaev 已提交
581 582
status("")
status("  GUI: ")
A
Alexander Shishkov 已提交
583

584
if(HAVE_QT)
585 586
  status("    QT 4.x:"            HAVE_QT        THEN "YES (ver ${QT_VERSION_MAJOR}.${QT_VERSION_MINOR}.${QT_VERSION_PATCH} ${QT_EDITION})" ELSE NO)
  status("    QT OpenGL support:" HAVE_QT_OPENGL THEN "YES (${QT_QTOPENGL_LIBRARY})" ELSE NO)
A
Alexander Shishkov 已提交
587
else()
588 589 590
  if(DEFINED WITH_QT)
    status("    QT 4.x:" NO)
  endif()
591 592 593 594 595 596 597 598 599
  if(WIN32)
    status("    Win32 UI:" YES)
  else()
    if(APPLE)
      if(WITH_CARBON)
        status("    Carbon:" YES)
      else()
        status("    Cocoa:"  YES)
      endif()
A
Alexander Shishkov 已提交
600
    else()
601 602 603
      status("    GTK+ 2.x:" HAVE_GTK      THEN "YES (ver ${ALIASOF_gtk+-2.0_VERSION})"     ELSE NO)
      status("    GThread :" HAVE_GTHREAD  THEN "YES (ver ${ALIASOF_gthread-2.0_VERSION})"  ELSE NO)
      status("    GtkGlExt:" HAVE_GTKGLEXT THEN "YES (ver ${ALIASOF_gtkglext-1.0_VERSION})" ELSE NO)
A
Alexander Shishkov 已提交
604
    endif()
605
  endif()
A
Alexander Shishkov 已提交
606 607
endif()

608
status("    OpenGL support:" HAVE_OPENGL THEN "YES (${OPENGL_LIBRARIES})" ELSE NO)
609

610
# ========================== MEDIA IO ==========================
A
Andrey Kamaev 已提交
611 612
status("")
status("  Media I/O: ")
613
status("    ZLib:"         BUILD_ZLIB    THEN "build (ver ${ZLIB_VERSION_STRING})"               ELSE "${ZLIB_LIBRARY} (ver ${ZLIB_VERSION_STRING})")
A
Alexander Shishkov 已提交
614

615
if(WITH_JPEG)
616
  status("    JPEG:"       JPEG_FOUND    THEN "${JPEG_LIBRARY} (ver ${JPEG_LIB_VERSION})"        ELSE "build (ver ${JPEG_LIB_VERSION})")
617 618 619 620
else()
  status("    JPEG:"       "NO")
endif()
if(WITH_PNG)
621
  status("    PNG:"        PNG_FOUND     THEN "${PNG_LIBRARY} (ver ${PNG_VERSION})"              ELSE "build (ver ${PNG_VERSION})")
622 623 624 625
else()
  status("    PNG:"        "NO")
endif()
if(WITH_TIFF)
V
Vadim Pisarevsky 已提交
626 627 628
  if(TIFF_VERSION_STRING AND TIFF_FOUND)
    status("    TIFF:"     "${TIFF_LIBRARY} (ver ${TIFF_VERSION} - ${TIFF_VERSION_STRING})")
  else()
629
    status("    TIFF:"     TIFF_FOUND    THEN "${TIFF_LIBRARY} (ver ${TIFF_VERSION})"            ELSE "build (ver ${TIFF_VERSION} - ${TIFF_VERSION_STRING})")
V
Vadim Pisarevsky 已提交
630
  endif()
631 632 633 634
else()
  status("    TIFF:"       "NO")
endif()
if(WITH_JASPER)
635
  status("    JPEG 2000:"  JASPER_FOUND  THEN "${JASPER_LIBRARY} (ver ${JASPER_VERSION_STRING})" ELSE "build (ver ${JASPER_VERSION_STRING})")
636 637 638
else()
  status("    JPEG 2000:"  "NO")
endif()
A
Andrey Kamaev 已提交
639 640 641 642 643
if(WITH_OPENEXR)
  status("    OpenEXR:"  OPENEXR_FOUND  THEN "${OPENEXR_LIBRARIES} (ver ${OPENEXR_VERSION})" ELSE "build (ver ${OPENEXR_VERSION})")
else()
  status("    OpenEXR:"  "NO")
endif()
A
Alexander Shishkov 已提交
644

645
# ========================== VIDEO IO ==========================
A
Andrey Kamaev 已提交
646
status("")
647 648 649
status("  Video I/O:")

if(DEFINED WITH_1394)
650 651
  status("    DC1394 1.x:"     HAVE_DC1394         THEN "YES (ver ${ALIASOF_libdc1394_VERSION})"   ELSE NO)
  status("    DC1394 2.x:"     HAVE_DC1394_2       THEN "YES (ver ${ALIASOF_libdc1394-2_VERSION})" ELSE NO)
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
endif(DEFINED WITH_1394)

if(ANDROID)
  if(HAVE_opencv_androidcamera)
    status("    AndroidNativeCamera:" BUILD_ANDROID_CAMERA_WRAPPER
                                                   THEN "YES, build for Android${ANDROID_VERSION}" ELSE "YES, use prebuilt libraries")
  else()
    status("    AndroidNativeCamera:" "NO (native camera requires Android API level 8 or higher)")
  endif()
endif()

if(DEFINED WITH_AVFOUNDATION)
  status("    AVFoundation:"   WITH_AVFOUNDATION   THEN YES                                        ELSE NO)
endif(DEFINED WITH_AVFOUNDATION)

if(DEFINED WITH_FFMPEG)
  if(WIN32)
    status("    FFMPEG:"       WITH_FFMPEG         THEN "YES (prebuilt binaries)"                  ELSE NO)
  else()
    status("    FFMPEG:"       HAVE_FFMPEG         THEN YES ELSE NO)
  endif()
  status("      codec:"        HAVE_FFMPEG_CODEC   THEN "YES (ver ${ALIASOF_libavcodec_VERSION})"  ELSE NO)
  status("      format:"       HAVE_FFMPEG_FORMAT  THEN "YES (ver ${ALIASOF_libavformat_VERSION})" ELSE NO)
  status("      util:"         HAVE_FFMPEG_UTIL    THEN "YES (ver ${ALIASOF_libavutil_VERSION})"   ELSE NO)
  status("      swscale:"      HAVE_FFMPEG_SWSCALE THEN "YES (ver ${ALIASOF_libswscale_VERSION})"  ELSE NO)
  status("      gentoo-style:" HAVE_GENTOO_FFMPEG  THEN YES                                        ELSE NO)
endif(DEFINED WITH_FFMPEG)

if(DEFINED WITH_GSTREAMER)
  status("    GStreamer:"      HAVE_GSTREAMER      THEN ""                                         ELSE NO)
682 683 684 685 686
  if(HAVE_GSTREAMER)
    status("      base:"       "YES (ver ${ALIASOF_gstreamer-base-0.10_VERSION})")
    status("      app:"        "YES (ver ${ALIASOF_gstreamer-app-0.10_VERSION})")
    status("      video:"      "YES (ver ${ALIASOF_gstreamer-video-0.10_VERSION})")
  endif()
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
endif(DEFINED WITH_GSTREAMER)

if(DEFINED WITH_OPENNI)
  status("    OpenNI:"         HAVE_OPENNI         THEN "YES (ver ${OPENNI_VERSION_STRING}, build ${OPENNI_VERSION_BUILD})"
                                                                                                   ELSE NO)
  status("    OpenNI PrimeSensor Modules:" HAVE_OPENNI_PRIME_SENSOR_MODULE
                                                   THEN "YES (${OPENNI_PRIME_SENSOR_MODULE})"      ELSE NO)
endif(DEFINED WITH_OPENNI)

if(DEFINED WITH_PVAPI)
  status("    PvAPI:"          HAVE_PVAPI          THEN YES                                        ELSE NO)
endif(DEFINED WITH_PVAPI)

if(DEFINED WITH_QUICKTIME)
  status("    QuickTime:"      WITH_QUICKTIME      THEN YES                                        ELSE NO)
  status("    QTKit:"          WITH_QUICKTIME      THEN NO                                         ELSE YES)
endif(DEFINED WITH_QUICKTIME)

if(DEFINED WITH_UNICAP)
  status("    UniCap:"         HAVE_UNICAP         THEN "YES (ver ${ALIASOF_libunicap_VERSION})"   ELSE NO)
  status("    UniCap ucil:"    HAVE_UNICAP_UCIL    THEN "YES (ver ${ALIASOF_libucil_VERSION})"     ELSE NO)
endif(DEFINED WITH_UNICAP)

if(DEFINED WITH_V4L)
711 712 713 714 715
  if(HAVE_CAMV4L)
    set(HAVE_CAMV4L_STR "YES")
  else()
    set(HAVE_CAMV4L_STR "NO")
  endif()
716
  if(HAVE_CAMV4L2)
717 718 719 720
    set(HAVE_CAMV4L2_STR "YES")
  else()
    set(HAVE_CAMV4L2_STR "NO")
  endif()
721 722 723
  status("    V4L/V4L2:"       HAVE_LIBV4L         THEN "Using libv4l (ver ${ALIASOF_libv4l1_VERSION})"
                                                                                                   ELSE "${HAVE_CAMV4L_STR}/${HAVE_CAMV4L2_STR}")
endif(DEFINED WITH_V4L)
724

725 726 727
if(DEFINED WITH_VIDEOINPUT)
  status("    DirectShow:"     HAVE_VIDEOINPUT     THEN YES                                        ELSE NO)
endif(DEFINED WITH_VIDEOINPUT)
A
Alexander Shishkov 已提交
728

729 730 731 732 733 734 735
if(DEFINED WITH_XIMEA)
  status("    XIMEA:"          HAVE_XIMEA          THEN YES                                        ELSE NO)
endif(DEFINED WITH_XIMEA)

if(DEFINED WITH_XINE)
  status("    Xine:"           HAVE_XINE           THEN "YES (ver ${ALIASOF_libxine_VERSION})"     ELSE NO)
endif(DEFINED WITH_XINE)
736

737
# ========================== Other third-party libraries ==========================
A
Andrey Kamaev 已提交
738
status("")
739
status("  Other third-party libraries:")
A
Alexander Shishkov 已提交
740

741 742 743 744 745 746 747 748 749 750 751 752 753
if(DEFINED WITH_IPP)
  if(WITH_IPP AND IPP_FOUND)
    status("    Use IPP:" "${IPP_LATEST_VERSION_STR} [${IPP_LATEST_VERSION_MAJOR}.${IPP_LATEST_VERSION_MINOR}.${IPP_LATEST_VERSION_BUILD}]")
    status("         at:" "${IPP_ROOT_DIR}")
  else()
    status("    Use IPP:"   WITH_IPP AND NOT IPP_FOUND THEN "IPP not found" ELSE NO)
  endif()
endif(DEFINED WITH_IPP)

if(DEFINED WITH_TBB)
  status("    Use TBB:"   HAVE_TBB   THEN "YES (ver ${TBB_VERSION_MAJOR}.${TBB_VERSION_MINOR} interface ${TBB_INTERFACE_VERSION})" ELSE NO)
endif(DEFINED WITH_TBB)

754 755 756 757
if(DEFINED WITH_CSTRIPES)
  status("    Use C=:"   HAVE_CSTRIPES   THEN YES ELSE NO)
endif(DEFINED WITH_CSTRIPES)

758 759 760
if(DEFINED WITH_CUDA)
  status("    Use Cuda:"  HAVE_CUDA  THEN "YES (ver ${CUDA_VERSION_STRING})" ELSE NO)
endif(DEFINED WITH_CUDA)
A
Alexander Shishkov 已提交
761

762 763
status("    Use OpenCL:"  HAVE_OPENCL  THEN YES ELSE NO)

764
status("    Use Eigen:" HAVE_EIGEN THEN "YES (ver ${EIGEN_WORLD_VERSION}.${EIGEN_MAJOR_VERSION}.${EIGEN_MINOR_VERSION})" ELSE NO)
765
status("    Use Clp:"   HAVE_CLP   THEN YES ELSE NO)
A
Alexander Shishkov 已提交
766

767 768
if(HAVE_CUDA)
  status("")
769
  status("  NVIDIA CUDA")
770 771 772 773

  status("    Use CUFFT:"            HAVE_CUFFT  THEN YES ELSE NO)
  status("    Use CUBLAS:"           HAVE_CUBLAS THEN YES ELSE NO)
  status("    NVIDIA GPU arch:"      ${OPENCV_CUDA_ARCH_BIN})
A
Anatoly Baksheev 已提交
774
  status("    NVIDIA PTX archs:"     ${OPENCV_CUDA_ARCH_PTX})
775
  status("    Use fast math:"        CUDA_FAST_MATH THEN YES ELSE NO)
776 777
endif()

778
# ========================== python ==========================
779
status("")
780 781 782
status("  Python:")
status("    Interpreter:"   PYTHON_EXECUTABLE     THEN "${PYTHON_EXECUTABLE} (ver ${PYTHON_VERSION_FULL})"         ELSE NO)
if(BUILD_opencv_python)
V
Vadim Pisarevsky 已提交
783
  if(PYTHONLIBS_VERSION_STRING)
784
    status("    Libraries:"   HAVE_opencv_python  THEN  "${PYTHON_LIBRARIES} (ver ${PYTHONLIBS_VERSION_STRING})"   ELSE NO)
V
Vadim Pisarevsky 已提交
785
  else()
786
    status("    Libraries:"   HAVE_opencv_python  THEN  ${PYTHON_LIBRARIES}                                        ELSE NO)
V
Vadim Pisarevsky 已提交
787
  endif()
788 789 790 791
  status("    numpy:"         PYTHON_USE_NUMPY    THEN "${PYTHON_NUMPY_INCLUDE_DIR} (ver ${PYTHON_NUMPY_VERSION})" ELSE "NO (Python wrappers can not be generated)")
  status("    packages path:" PYTHON_EXECUTABLE   THEN "${PYTHON_PACKAGES_PATH}"                                   ELSE "-")
endif()

792
# ========================== documentation ==========================
793 794 795 796 797 798 799 800 801 802
if(BUILD_DOCS)
  status("")
  status("  Documentation:")
  if(HAVE_SPHINX)
    status("    Build Documentation:" PDFLATEX_COMPILER      THEN YES ELSE "YES (only HTML and without math expressions)")
  else()
    status("    Build Documentation:" NO)
  endif()
  status("    Sphinx:"              HAVE_SPHINX              THEN "${SPHINX_BUILD} (ver ${SPHINX_VERSION})" ELSE NO)
  status("    PdfLaTeX compiler:"   PDFLATEX_COMPILER        THEN "${PDFLATEX_COMPILER}" ELSE NO)
803
endif()
A
Alexander Shishkov 已提交
804

805
# ========================== samples and tests ==========================
A
Andrey Kamaev 已提交
806 807
status("")
status("  Tests and samples:")
808 809 810
status("    Tests:"             BUILD_TESTS AND HAVE_opencv_ts       THEN YES ELSE NO)
status("    Performance tests:" BUILD_PERF_TESTS AND HAVE_opencv_ts  THEN YES ELSE NO)
status("    Examples:"          BUILD_EXAMPLES                       THEN YES ELSE NO)
A
Andrey Kamaev 已提交
811 812

if(ANDROID)
813 814
  status("    Android tests:"    BUILD_TESTS AND CAN_BUILD_ANDROID_PROJECTS            THEN YES ELSE NO)
  status("    Android examples:" BUILD_ANDROID_EXAMPLES AND CAN_BUILD_ANDROID_PROJECTS THEN YES ELSE NO)
A
Alexander Shishkov 已提交
815 816
endif()

817
# ========================== auxiliary ==========================
A
Andrey Kamaev 已提交
818 819 820 821 822 823
status("")
status("  Install path:" "${CMAKE_INSTALL_PREFIX}")
status("")
status("  cvconfig.h is in:" "${OPENCV_CONFIG_FILE_INCLUDE_DIR}")
status("-----------------------------------------------------------------")
status("")
824

V
Vadim Pisarevsky 已提交
825 826
ocv_finalize_status()

A
Andrey Kamaev 已提交
827 828 829
# ----------------------------------------------------------------------------
# Warn in the case of in-source build
# ----------------------------------------------------------------------------
830
if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
831
  message(WARNING "The source directory is the same as binary directory. \"make clean\" may damage the source tree")
832
endif()
833