CMakeLists.txt 33.4 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
  # Add these standard paths to the search paths for FIND_LIBRARY
  # to find libraries from these locations first
  if(UNIX)
    set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} /lib /usr/lib)
  endif()
A
Alexander Shishkov 已提交
32

A
Andrey Kamaev 已提交
33 34 35 36 37 38
  # 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()
39

A
Andrey Kamaev 已提交
40 41 42
  if(MSVC)
    set(CMAKE_USE_RELATIVE_PATHS ON CACHE INTERNAL "" FORCE)
  endif()
43 44 45
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" )
46 47 48 49 50
endif(NOT CMAKE_TOOLCHAIN_FILE)

# --------------------------------------------------------------
# Top level OpenCV project
# --------------------------------------------------------------
51
if(NOT IOS)
A
Andrey Kamaev 已提交
52
  cmake_minimum_required(VERSION 2.6.3)
53
else()
A
Andrey Kamaev 已提交
54
  cmake_minimum_required(VERSION 2.8)
55
endif()
A
Andrey Kamaev 已提交
56

57
project(OpenCV)
A
Alexander Shishkov 已提交
58 59

set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Configs" FORCE)
60
if(DEFINED CMAKE_BUILD_TYPE AND CMAKE_VERSION VERSION_GREATER "2.8")
A
Andrey Kamaev 已提交
61
  set_property( CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${CMAKE_CONFIGURATION_TYPES} )
A
Andrey Kamaev 已提交
62
endif()
63

A
Alexander Shishkov 已提交
64 65 66 67 68 69 70 71 72 73
set(CMAKE_C_FLAGS_MINSIZEREL "" CACHE INTERNAL "" FORCE)
set(CMAKE_C_FLAGS_RELWITHDEBINFO "" CACHE INTERNAL "" FORCE)
set(CMAKE_CXX_FLAGS_MINSIZEREL "" CACHE INTERNAL "" FORCE)
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "" CACHE INTERNAL "" FORCE)
set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "" CACHE INTERNAL "" FORCE)
set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO "" CACHE INTERNAL "" FORCE)
set(CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL "" CACHE INTERNAL "" FORCE)
set(CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO "" CACHE INTERNAL "" FORCE)
set(CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL "" CACHE INTERNAL "" FORCE)
set(CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO "" CACHE INTERNAL "" FORCE)
A
Andrey Kamaev 已提交
74

75 76 77 78
set(CMAKE_VERBOSE OFF CACHE BOOL "Verbose mode")
if(CMAKE_VERBOSE)
    set(CMAKE_VERBOSE_MAKEFILE 1)
endif()
79

80 81 82
include(cmake/OpenCVUtils.cmake REQUIRED)

# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
83
# Detect compiler and target platform architecture
A
Andrey Kamaev 已提交
84
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
85
include(cmake/OpenCVDetectCXXCompiler.cmake REQUIRED)
86 87


88
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
89
# OpenCV cmake options
90
# ----------------------------------------------------------------------------
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

# Optional 3rd party components
# ===================================================
OCV_OPTION(WITH_1394           "Include IEEE1394 support"                    ON   IF (UNIX AND NOT ANDROID AND NOT IOS) )
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_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_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) )
OCV_OPTION(WITH_EIGEN          "Include Eigen2/Eigen3 support"               ON)
OCV_OPTION(WITH_FFMPEG         "Include FFMPEG support"                      ON   IF (UNIX AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_GSTREAMER      "Include Gstreamer support"                   ON   IF (UNIX AND NOT APPLE AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_GTK            "Include GTK support"                         ON   IF (UNIX AND NOT APPLE AND NOT ANDROID AND NOT IOS) )
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) )
OCV_OPTION(WITH_OPENGL         "Include OpenGL support"                      OFF  IF (NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_OPENNI         "Include OpenNI support"                      OFF  IF (NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_PNG            "Include PNG support"                         ON   IF (NOT IOS) )
OCV_OPTION(WITH_PVAPI          "Include Prosilica GigE support"              ON   IF (UNIX AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_QT             "Build with Qt Backend support"               OFF  IF (NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_QUICKTIME      "Use QuickTime for Video I/O insted of QTKit" OFF  IF APPLE )
OCV_OPTION(WITH_TBB            "Include Intel TBB support"                   OFF  IF (NOT IOS) )
OCV_OPTION(WITH_TIFF           "Include TIFF support"                        ON   IF (NOT IOS) )
OCV_OPTION(WITH_UNICAP         "Include Unicap support (GPL)"                OFF  IF (UNIX AND NOT APPLE AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_V4L            "Include Video 4 Linux support"               ON   IF (UNIX AND NOT APPLE AND NOT ANDROID AND NOT IOS) )
OCV_OPTION(WITH_VIDEOINPUT     "Build HighGUI with DirectShow support"       ON   IF WIN32 )
OCV_OPTION(WITH_XIMEA          "Include XIMEA cameras support"               OFF  IF WIN32 )
OCV_OPTION(WITH_XINE           "Include Xine support (GPL)"                  OFF  IF (UNIX AND NOT APPLE AND NOT ANDROID AND NOT IOS) )

# OpenCV build components
# ===================================================
if(ANDROID OR IOS)
A
Andrey Kamaev 已提交
125
    OCV_OPTION(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead 6of static ones (.lib/.a)" OFF )
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
else()
    OCV_OPTION(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead of static ones (.lib/.a)" ON )
endif()
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) )
OCV_OPTION(BUILD_WITH_DEBUG_INFO    "Include debug info into debug libs"          ON )
OCV_OPTION(BUILD_WITH_STATIC_CRT    "Enables use of staticaly linked CRT for staticaly linked OpenCV" ON IF MSVC )

if(WIN32 OR ANDROID)
    set(OPENCV_BUILD_3RDPARTY_LIBS TRUE  CACHE INTERNAL "Build 3rd party libraries")
else()
    # Build 3rdparty libraries under unix
    set(OPENCV_BUILD_3RDPARTY_LIBS FALSE CACHE BOOL "Build 3rd party libraries")
endif()

# OpenCV installation options
# ===================================================
OCV_OPTION(INSTALL_C_EXAMPLES       "Install C examples"        OFF )
OCV_OPTION(INSTALL_PYTHON_EXAMPLES  "Install Python examples"   OFF )
OCV_OPTION(INSTALL_ANDROID_EXAMPLES "Install Android examples"  OFF  IF ANDROID )
A
Andrey Kamaev 已提交
150
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) )
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

# OpenCV build options
# ===================================================
OCV_OPTION(ENABLE_PRECOMPILED_HEADERS "Use precompiled headers"                                  ON   IF (NOT IOS) )
OCV_OPTION(ENABLE_SOLUTION_FOLDERS    "Solution folder in Visual Studio or in other IDEs"        OFF  IF (CMAKE_VERSION VERSION_GREATER "2.8.0") )
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)) )
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"                                 OFF  IF (CV_ICC OR CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
OCV_OPTION(ENABLE_SSSE3               "Enable SSSE3 instructions"                                OFF  IF (CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
OCV_OPTION(ENABLE_SSE41               "Enable SSE4.1 instructions"                               OFF  IF (CV_ICC OR CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
OCV_OPTION(ENABLE_SSE42               "Enable SSE4.2 instructions"                               OFF  IF (CMAKE_COMPILER_IS_GNUCXX AND (X86 OR X86_64)) )
166
OCV_OPTION(OPENCV_WARNINGS_ARE_ERRORS "Treat warnings as errors"                                 OFF )
167

168
include(cmake/OpenCVLegacyOptions.cmake OPTIONAL)
A
Andrey Kamaev 已提交
169

A
Alexander Shishkov 已提交
170
# ----------------------------------------------------------------------------
171
#  Get actual OpenCV version number from sources
A
Alexander Shishkov 已提交
172
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
173
include(cmake/OpenCVVersion.cmake REQUIRED)
A
Alexander Shishkov 已提交
174 175


A
Andrey Kamaev 已提交
176 177 178
# ----------------------------------------------------------------------------
#  Build & install layouts
# ----------------------------------------------------------------------------
179

A
Andrey Kamaev 已提交
180
# Save libs and executables in the same place
A
Andrey Kamaev 已提交
181 182
set(LIBRARY_OUTPUT_PATH "${CMAKE_BINARY_DIR}/lib" CACHE PATH "Output directory for libraries" )
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin" CACHE PATH "Output directory for applications" )
A
Andrey Kamaev 已提交
183

184
if(ANDROID OR WIN32)
A
Andrey Kamaev 已提交
185
    set(OPENCV_DOC_INSTALL_PATH doc)
A
Andrey Kamaev 已提交
186
elseif(INSTALL_TO_MANGLED_PATHS)
187
    set(OPENCV_DOC_INSTALL_PATH share/OpenCV-${OPENCV_VERSION}/doc)
A
Andrey Kamaev 已提交
188
else()
189
    set(OPENCV_DOC_INSTALL_PATH share/OpenCV/doc)
A
Andrey Kamaev 已提交
190 191 192
endif()

if(ANDROID)
193
    set(OPENCV_LIB_INSTALL_PATH libs/${ANDROID_NDK_ABI_NAME})
A
Andrey Kamaev 已提交
194
else()
195
    set(OPENCV_LIB_INSTALL_PATH lib${LIB_SUFFIX})
A
Andrey Kamaev 已提交
196 197 198 199 200
endif()

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

A
Andrey Kamaev 已提交
201 202 203 204 205 206 207 208 209

# ----------------------------------------------------------------------------
#  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)
include_directories(${OPENCV_CONFIG_FILE_INCLUDE_DIR})


A
Alexander Shishkov 已提交
210 211 212 213 214
# ----------------------------------------------------------------------------
# Use statically or dynamically linked CRT?
# Default: dynamic
# ----------------------------------------------------------------------------
if(MSVC)
A
Andrey Kamaev 已提交
215
  include(cmake/OpenCVCRTLinkage.cmake REQUIRED)
A
Alexander Shishkov 已提交
216 217 218 219 220 221
endif(MSVC)


# ----------------------------------------------------------------------------
#  Autodetect if we are in a SVN repository
# ----------------------------------------------------------------------------
222
find_host_program(SVNVERSION_PATH svnversion)
A
Alexander Shishkov 已提交
223 224 225
mark_as_advanced(force SVNVERSION_PATH)
if(SVNVERSION_PATH)
    message(STATUS "Extracting svn version, please wait...")
A
Alexander Shishkov 已提交
226
    execute_process(COMMAND ${SVNVERSION_PATH} -n ${OpenCV_SOURCE_DIR} OUTPUT_VARIABLE SVNVERSION_RESULT)
A
Alexander Shishkov 已提交
227 228

    if(SVNVERSION_RESULT MATCHES "exported")
229 230 231
        # This is NOT a svn repository:
        set(OPENCV_SVNVERSION "")
        message(STATUS "SVNVERSION: exported")
A
Alexander Shishkov 已提交
232 233
    else()
        set(OPENCV_SVNVERSION " svn:${SVNVERSION_RESULT}")
234
        message(STATUS "SVNVERSION: ${OPENCV_SVNVERSION}")
A
Alexander Shishkov 已提交
235 236 237 238 239 240
    endif()
else()
    # We don't have svnversion:
    set(OPENCV_SVNVERSION "")
endif()

A
Andrey Kamaev 已提交
241

A
Alexander Shishkov 已提交
242 243 244
# ----------------------------------------------------------------------------
#       CHECK FOR SYSTEM LIBRARIES, OPTIONS, ETC..
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
245 246 247 248 249
if(UNIX)
  include(cmake/OpenCVFindPkgConfig.cmake OPTIONAL)
  include(CheckFunctionExists)
  include(CheckIncludeFile)
endif()
A
Alexander Shishkov 已提交
250

251 252
include(cmake/OpenCVPCHSupport.cmake REQUIRED)
include(cmake/OpenCVModule.cmake REQUIRED)
A
Alexander Shishkov 已提交
253

254
if(ANDROID)
A
Andrey Kamaev 已提交
255
  include(cmake/OpenCVAndroidProject.cmake REQUIRED)
A
Alexander Shishkov 已提交
256 257 258
endif()


A
Andrey Kamaev 已提交
259 260 261
# ----------------------------------------------------------------------------
#  Detect 3rd-party tools and libraries
# ----------------------------------------------------------------------------
A
Alexander Shishkov 已提交
262

A
Andrey Kamaev 已提交
263 264
#Graphic libraries
set(HAVE_OPENGL 0)
A
Alexander Shishkov 已提交
265 266 267 268 269
if(UNIX)
    if(NOT APPLE)
      if(WITH_GTK)
        CHECK_MODULE(gtk+-2.0 HAVE_GTK)
        CHECK_MODULE(gthread-2.0 HAVE_GTHREAD)
270 271 272 273 274 275 276 277 278 279 280
        if(WITH_OPENGL)
            CHECK_MODULE(gtkglext-1.0 HAVE_GTKGLEXT)
            if(HAVE_GTKGLEXT)
                find_package(OpenGL QUIET)
                if(OPENGL_FOUND)
                    set(HAVE_OPENGL 1)
                    set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} ${OPENGL_LIBRARIES})
                    include_directories(${OPENGL_INCLUDE_DIR})
                endif()
            endif()
        endif()
A
Alexander Shishkov 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
      else()
        set(HAVE_GTK FALSE)
        set(HAVE_GTHREAD FALSE)
      endif()
      if(WITH_GSTREAMER)
        CHECK_MODULE(gstreamer-base-0.10 HAVE_GSTREAMER)
        CHECK_MODULE(gstreamer-app-0.10 HAVE_GSTREAMER)
        CHECK_MODULE(gstreamer-video-0.10 HAVE_GSTREAMER)
      else()
        set(HAVE_GSTREAMER FALSE)
      endif()
    endif()

    if(WITH_UNICAP)
      CHECK_MODULE(libunicap HAVE_UNICAP_)
      CHECK_MODULE(libucil HAVE_UNICAP_UCIL)
      if(HAVE_UNICAP_ AND HAVE_UNICAP_UCIL)
        set(HAVE_UNICAP 1)
      endif()
    else()
      set(HAVE_UNICAP FALSE)
    endif()

    if(WITH_PVAPI)
      find_path(PVAPI_INCLUDE_PATH "PvApi.h"
                PATHS "/usr/local/include" "/usr/include"
                DOC "The path to PvAPI header")
      if(PVAPI_INCLUDE_PATH)
        set(HAVE_PVAPI 1)
      endif()
    endif()

    set(HAVE_FFMPEG 0)
    if(WITH_FFMPEG)
      CHECK_MODULE(libavcodec HAVE_FFMPEG_CODEC)
      CHECK_MODULE(libavformat HAVE_FFMPEG_FORMAT)
      CHECK_MODULE(libavutil HAVE_FFMPEG_UTIL)
      CHECK_MODULE(libswscale HAVE_FFMPEG_SWSCALE)
      CHECK_INCLUDE_FILE(libavformat/avformat.h HAVE_GENTOO_FFMPEG)
      CHECK_INCLUDE_FILE(ffmpeg/avformat.h HAVE_FFMPEG_FFMPEG)
      if(NOT HAVE_GENTOO_FFMPEG AND NOT HAVE_FFMPEG_FFMPEG)
        if(EXISTS /usr/include/ffmpeg/libavformat/avformat.h OR HAVE_FFMPEG_SWSCALE)
          set(HAVE_GENTOO_FFMPEG 1)
        endif()
      endif()
      if(HAVE_FFMPEG_CODEC AND HAVE_FFMPEG_FORMAT AND HAVE_FFMPEG_UTIL)
        if(HAVE_FFMPEG_SWSCALE OR NOT HAVE_GENTOO_FFMPEG)
            set(HAVE_FFMPEG 1)
        endif()
      endif()
      # Find the bzip2 library because it is required on some systems
      FIND_LIBRARY(BZIP2_LIBRARIES NAMES bz2 bzip2)
      if(NOT BZIP2_LIBRARIES)
        # Do an other trial
        FIND_FILE(BZIP2_LIBRARIES NAMES libbz2.so.1 PATHS /lib)
      endif()
    endif()

    if(WITH_1394)
      CHECK_MODULE(libdc1394-2 HAVE_DC1394_2)
      if(NOT HAVE_DC1394_2)
        CHECK_MODULE(libdc1394 HAVE_DC1394)
      endif()
    else()
      set(HAVE_DC1394_2 FALSE)
      set(HAVE_DC1394 FALSE)
    endif()

349
    if(NOT APPLE)
A
Alexander Shishkov 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
        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(WITH_XINE)
            CHECK_MODULE(libxine HAVE_XINE)
        else()
            set(HAVE_XINE FALSE)
        endif()
        if(WITH_V4L)
            CHECK_MODULE(libv4l1 HAVE_LIBV4L)
            CHECK_INCLUDE_FILE(linux/videodev.h HAVE_CAMV4L)
            CHECK_INCLUDE_FILE(linux/videodev2.h HAVE_CAMV4L2)
        else()
            set(HAVE_LIBV4L FALSE)
            set(HAVE_CAMV4L FALSE)
            set(HAVE_CAMV4L2 FALSE)
        endif()

A
Andrey Kamaev 已提交
370
        if(ANDROID)
A
Alexander Shishkov 已提交
371
            set(OPENCV_LINKER_LIBS dl m log)
A
Andrey Kamaev 已提交
372 373
        elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR ${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
            set(OPENCV_LINKER_LIBS m pthread)
A
Alexander Shishkov 已提交
374 375 376 377 378 379 380
        else()
            set(OPENCV_LINKER_LIBS dl m pthread rt)
        endif()
    else()
        add_definitions(-DHAVE_ALLOCA -DHAVE_ALLOCA_H -DHAVE_LIBPTHREAD -DHAVE_UNISTD_H)
    endif()
endif()
381
if (UNIX OR WIN32)
382 383
    if(NOT OPENCV_BUILD_3RDPARTY_LIBS)
        message(STATUS "NOT OPENCV_BUILD_3RDPARTY_LIBS **************************************************")
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
        include(FindZLIB)
        if(WITH_PNG)
            include(FindPNG)
            if(PNG_FOUND)
                CHECK_INCLUDE_FILE(${PNG_PNG_INCLUDE_DIR}/png.h HAVE_PNG_H)
                CHECK_INCLUDE_FILE(${PNG_PNG_INCLUDE_DIR}/libpng/png.h HAVE_LIBPNG_PNG_H)
            endif()
        else()
            set(PNG_FOUND FALSE)
        endif()
        if(WITH_TIFF)
            include(FindTIFF)
        else()
            set(TIFF_FOUND FALSE)
        endif()
        if(WITH_JASPER)
            include(FindJasper)
        else()
            set(JASPER_FOUND FALSE)
        endif()
        if(WITH_JPEG)
405
            include(FindJPEG)
406
        else()
407
            set(JPEG_FOUND FALSE)
408 409 410
        endif()
    endif()
endif()
A
Alexander Shishkov 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427

if(WITH_PNG AND NOT PNG_FOUND)
    set(PNG_LIBRARIES libpng)
endif()

if(WITH_JPEG AND NOT JPEG_FOUND)
    set(JPEG_LIBRARIES libjpeg)
endif()

if(WITH_TIFF AND NOT TIFF_FOUND)
    set(TIFF_LIBRARIES libtiff)
endif()

if(WITH_JASPER AND NOT JASPER_FOUND)
    set(JASPER_LIBRARIES libjasper)
endif()

428 429 430 431
if(NOT ZLIB_FOUND)
    set(ZLIB_LIBRARY zlib)
endif()

A
Alexander Shishkov 已提交
432 433 434
#message(STATUS "Graphic libraries: ${PNG_LIBRARIES} ${JPEG_LIBRARIES} ${TIFF_LIBRARIES} ${JASPER_LIBRARIES}")

if(WITH_OPENEXR)
A
Andrey Kamaev 已提交
435
  include(cmake/OpenCVFindOpenEXR.cmake)
A
Alexander Shishkov 已提交
436 437
endif()

A
Andrey Kamaev 已提交
438
#################### LATEX for dpf documentation ##################
439
if(BUILD_DOCS)
440
  include(cmake/OpenCVFindLATEX.cmake REQUIRED)
441
endif()
A
Alexander Shishkov 已提交
442

A
Andrey Kamaev 已提交
443 444
########################## Python Support #########################
include(cmake/OpenCVDetectPython.cmake REQUIRED)
445

A
Andrey Kamaev 已提交
446 447
########################### Java Support ##########################
# current implementation of Java wrappers generator requires python at build time
448
if((NOT DEFINED BUILD_opencv_java OR BUILD_opencv_java) AND PYTHON_EXECUTABLE)
A
Andrey Kamaev 已提交
449 450 451 452
  if(ANDROID)
    include(cmake/OpenCVDetectAndroidSDK.cmake REQUIRED)
  endif()
  include(cmake/OpenCVDetectApacheAnt.cmake REQUIRED)
453

A
Andrey Kamaev 已提交
454 455 456 457 458
  if(ANDROID_EXECUTABLE AND ANT_EXECUTABLE AND (ANT_VERSION VERSION_GREATER 1.7) AND (ANDROID_SDK_TARGET_LEVEL GREATER 7))
    SET(CAN_BUILD_ANDROID_PROJECTS TRUE)
  else()
    SET(CAN_BUILD_ANDROID_PROJECTS FALSE)
  endif()
459 460
endif()

A
Andrey Kamaev 已提交
461
if(BUILD_ANDROID_EXAMPLES AND NOT CAN_BUILD_ANDROID_PROJECTS)
462 463 464
  if(HAVE_opencv_java)
    message(WARNING "Android examples are chosen for build, but required SDK tools are not found.")
  endif()
465
  unset(BUILD_ANDROID_EXAMPLES CACHE)
466 467
endif()

A
Alexander Shishkov 已提交
468 469 470 471
############################### QT ################################
set(HAVE_QT 0)
set(HAVE_QT_OPENGL 0)

A
Andrey Kamaev 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485
if(WITH_QT)
  find_package(Qt4)
  if(QT4_FOUND)
    set(HAVE_QT 1)
    add_definitions(-DHAVE_QT) #We need to define te macro this way, using cvconfig.h.cmake does not work

    if(WITH_OPENGL)
      find_package (OpenGL QUIET)
      if(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
        set(HAVE_OPENGL 1)
        set(HAVE_QT_OPENGL 1)
        add_definitions(-DHAVE_QT_OPENGL)
        set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} ${OPENGL_LIBRARIES})
      endif()
A
Alexander Shishkov 已提交
486
    endif()
A
Andrey Kamaev 已提交
487
  endif()
A
Alexander Shishkov 已提交
488 489 490
endif()

############################### TBB ################################
A
Andrey Kamaev 已提交
491 492 493
if(WITH_TBB)
  include(cmake/OpenCVDetectTBB.cmake REQUIRED)
endif()
A
Alexander Shishkov 已提交
494 495 496 497 498

############################ Intel IPP #############################
set(IPP_FOUND)

if(WITH_IPP)
A
Andrey Kamaev 已提交
499
  include(cmake/OpenCVFindIPP.cmake)
A
Alexander Shishkov 已提交
500 501 502
endif()

if(IPP_FOUND)
A
Andrey Kamaev 已提交
503 504 505 506
  add_definitions(-DHAVE_IPP)
  include_directories(${IPP_INCLUDE_DIRS})
  link_directories(${IPP_LIBRARY_DIRS})
  set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} ${IPP_LIBRARIES})
A
Alexander Shishkov 已提交
507 508 509 510
endif()

############################### CUDA ################################
if(WITH_CUDA)
A
Andrey Kamaev 已提交
511
  include(cmake/OpenCVDetectCUDA.cmake REQUIRED)
A
Alexander Shishkov 已提交
512 513 514 515 516 517 518
endif()

############################### OpenNI ################################
set(HAVE_OPENNI FALSE)
set(HAVE_OPENNI_PRIME_SENSOR_MODULE FALSE)

if(WITH_OPENNI)
A
Andrey Kamaev 已提交
519
  include(cmake/OpenCVFindOpenNI.cmake)
A
Alexander Shishkov 已提交
520 521
endif()

522 523
############################### XIMEA ################################
set(HAVE_XIMEA FALSE)
524

525
if(WITH_XIMEA)
A
Andrey Kamaev 已提交
526
  include(cmake/OpenCVFindXimea.cmake)
527 528 529
endif()

if(XIMEA_FOUND)
A
Andrey Kamaev 已提交
530
  set(HAVE_XIMEA TRUE)
531 532
endif()

A
Alexander Shishkov 已提交
533 534
############################## Eigen ##############################
if(WITH_EIGEN)
A
Andrey Kamaev 已提交
535
  find_path(EIGEN_INCLUDE_PATH "Eigen/Core"
A
Alexander Shishkov 已提交
536
            PATHS "/usr/local/include/eigen2" "/opt/include/eigen2" "/usr/include/eigen2"
A
Andrey Kamaev 已提交
537
                  "/usr/local/include/eigen3" "/opt/include/eigen3" "/usr/include/eigen3"
A
Alexander Shishkov 已提交
538
            DOC "The path to Eigen2/Eigen3 headers")
A
Andrey Kamaev 已提交
539 540 541 542
  if(EIGEN_INCLUDE_PATH)
    include_directories(${EIGEN_INCLUDE_PATH})
    set(HAVE_EIGEN 1)
  endif()
A
Alexander Shishkov 已提交
543 544 545 546
endif()

################## Extra HighGUI libs on Windows ###################
if(WIN32)
A
Andrey Kamaev 已提交
547
  set(HIGHGUI_LIBRARIES ${HIGHGUI_LIBRARIES} comctl32 gdi32 ole32)
548

A
Andrey Kamaev 已提交
549 550 551
  if(WITH_VIDEOINPUT)
    set(HAVE_VIDEOINPUT 1)
  endif()
552

A
Andrey Kamaev 已提交
553 554 555
  if(MSVC)
    set(HIGHGUI_LIBRARIES ${HIGHGUI_LIBRARIES} vfw32)
  endif()
A
Alexander Shishkov 已提交
556

A
Andrey Kamaev 已提交
557 558 559 560 561
  if(MINGW)
    if(MINGW64)
      set(HIGHGUI_LIBRARIES ${HIGHGUI_LIBRARIES} msvfw32 avifil32 avicap32 winmm)
    else()
      set(HIGHGUI_LIBRARIES ${HIGHGUI_LIBRARIES} vfw32 winmm)
A
Alexander Shishkov 已提交
562
    endif()
A
Andrey Kamaev 已提交
563
  endif()
564

A
Andrey Kamaev 已提交
565 566
  if(WITH_OPENGL AND NOT HAVE_QT_OPENGL)
    find_package(OpenGL QUIET)
567

A
Andrey Kamaev 已提交
568 569 570 571
    if(OPENGL_FOUND)
      set(HAVE_OPENGL 1)
      set(OPENCV_LINKER_LIBS ${OPENCV_LINKER_LIBS} ${OPENGL_LIBRARIES})
      include_directories(${OPENGL_INCLUDE_DIR})
572
    endif()
A
Andrey Kamaev 已提交
573
  endif()
574
endif()
A
Alexander Shishkov 已提交
575 576

# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
577
# OpenCV compiler and linker options
A
Alexander Shishkov 已提交
578
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
579
include(cmake/OpenCVCompilerOptions.cmake REQUIRED)
A
Alexander Shishkov 已提交
580 581

# In case of Makefiles if the user does not setup CMAKE_BUILD_TYPE, assume it's Release:
A
Andrey Kamaev 已提交
582 583
if(CMAKE_GENERATOR MATCHES "Makefiles" AND "${CMAKE_BUILD_TYPE}" STREQUAL "")
  set(CMAKE_BUILD_TYPE Release)
584
endif()
A
Alexander Shishkov 已提交
585

A
Andrey Kamaev 已提交
586 587 588 589 590 591
# ----------------------------------------------------------------------------
# Solution folders:
# ----------------------------------------------------------------------------
if(ENABLE_SOLUTION_FOLDERS)
  set_property(GLOBAL PROPERTY USE_FOLDERS ON)
  set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "CMakeTargets")
592 593
endif()

A
Andrey Kamaev 已提交
594 595
# Extra OpenCV targets: uninstall, package_source, perf, etc.
include(cmake/OpenCVExtraTargets.cmake REQUIRED)
A
Alexander Shishkov 已提交
596

A
Andrey Kamaev 已提交
597 598 599
# ----------------------------------------------------------------------------
# Process subdirectories
# ----------------------------------------------------------------------------
A
Alexander Shishkov 已提交
600

A
Andrey Kamaev 已提交
601 602
# opencv.hpp and legacy headers
add_subdirectory(include)
603

A
Andrey Kamaev 已提交
604 605
# OpenCV modules
add_subdirectory(modules)
A
Alexander Shishkov 已提交
606

A
Andrey Kamaev 已提交
607 608
# Generate targets for documentation
add_subdirectory(doc)
609

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

A
Andrey Kamaev 已提交
613 614
# 3rdparty libraries on-board
add_subdirectory(3rdparty)
615

A
Andrey Kamaev 已提交
616 617
# extra applications
add_subdirectory(apps)
618

A
Andrey Kamaev 已提交
619 620 621
# examples
if(BUILD_EXAMPLES OR BUILD_ANDROID_EXAMPLES OR INSTALL_PYTHON_EXAMPLES)
  add_subdirectory(samples)
A
Alexander Shishkov 已提交
622 623 624
endif()

# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
625
# Finalization: generate configuration-based files
A
Alexander Shishkov 已提交
626
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
627
ocv_track_build_dependencies()
A
Alexander Shishkov 已提交
628

A
Andrey Kamaev 已提交
629 630
# Generate platform-dependent and configuration-dependent headers
include(cmake/OpenCVGenHeaders.cmake REQUIRED)
A
Alexander Shishkov 已提交
631

A
Andrey Kamaev 已提交
632 633
# Generate opencv.pc for pkg-config command
include(cmake/OpenCVGenPkgconfig.cmake REQUIRED)
A
Alexander Shishkov 已提交
634

A
Andrey Kamaev 已提交
635 636
# Generate OpenCV.mk for ndk-build (Android build tool)
include(cmake/OpenCVGenAndroidMK.cmake REQUIRED)
637

A
Andrey Kamaev 已提交
638 639
# Generate OpenCVСonfig.cmake and OpenCVConfig-version.cmake for cmake projects
include(cmake/OpenCVGenConfig.cmake REQUIRED)
A
Alexander Shishkov 已提交
640 641

# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
642
# Summary:
A
Alexander Shishkov 已提交
643
# ----------------------------------------------------------------------------
A
Andrey Kamaev 已提交
644 645 646 647
status("")
status("General configuration for opencv ${OPENCV_VERSION} =====================================")
status("")
status("    Built as dynamic libs?:" BUILD_SHARED_LIBS THEN YES ELSE NO)
648
status("    C++ Compiler:"           CMAKE_COMPILER    THEN "${CMAKE_COMPILER}" ELSE "${CMAKE_CXX_COMPILER}")
A
Andrey Kamaev 已提交
649 650
status("    C++ flags (Release):"    ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE})
status("    C++ flags (Debug):"      ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG})
A
Alexander Shishkov 已提交
651
if(WIN32)
A
Andrey Kamaev 已提交
652 653
    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 已提交
654
else()
A
Andrey Kamaev 已提交
655 656
    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 已提交
657 658
endif()

A
Andrey Kamaev 已提交
659 660 661 662 663 664 665 666 667 668 669 670
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_AUTO_ST  "${OPENCV_MODULES_DISABLED_AUTO}")
string(REPLACE "opencv_" "" OPENCV_MODULES_DISABLED_FORCE_ST "${OPENCV_MODULES_DISABLED_FORCE}")
status("    To be built:"            OPENCV_MODULES_BUILD          THEN ${OPENCV_MODULES_BUILD_ST}          ELSE "-")
status("    Disabled by user:"       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 "-")


671
if(ANDROID)
672 673
    status("")
    status("  Android: ")
674 675
    status("    Android ABI:" ${ANDROID_ABI})
    status("    Native API level:" android-${ANDROID_NATIVE_API_LEVEL})
676
    status("    SDK target:" "${ANDROID_SDK_TARGET}")
677 678 679 680 681
    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()
682 683
    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)
684 685
endif()

A
Alexander Shishkov 已提交
686
#YV
A
Andrey Kamaev 已提交
687 688
status("")
status("  GUI: ")
A
Alexander Shishkov 已提交
689 690

if (HAVE_QT)
A
Andrey Kamaev 已提交
691 692
    status("    QT 4.x:"            HAVE_QT        THEN YES ELSE NO)
    status("    QT OpenGL support:" HAVE_QT_OPENGL THEN YES ELSE NO)
A
Alexander Shishkov 已提交
693 694
else()
    if(WIN32)
A
Andrey Kamaev 已提交
695
        status("    Win32 UI:" YES)
A
Alexander Shishkov 已提交
696 697 698
    else()
        if(APPLE)
            if(WITH_CARBON)
A
Andrey Kamaev 已提交
699
                status("    Carbon:" YES)
A
Alexander Shishkov 已提交
700
            else()
A
Andrey Kamaev 已提交
701
                status("    Cocoa:"  YES)
A
Alexander Shishkov 已提交
702 703
            endif()
        else()
704 705
            status("    GTK+ 2.x:" HAVE_GTK      THEN YES ELSE NO)
            status("    GThread :" HAVE_GTHREAD  THEN YES ELSE NO)
706
            status("    GtkGlExt:" HAVE_GTKGLEXT THEN YES ELSE NO)
A
Alexander Shishkov 已提交
707 708 709 710
        endif()
    endif()
endif()

711 712
status("    OpenGL support:" HAVE_OPENGL THEN YES ELSE NO)

A
Andrey Kamaev 已提交
713 714 715
# media
status("")
status("  Media I/O: ")
716
status("    ZLib:"      ZLIB_FOUND                         THEN ${ZLIB_FOUND}   ELSE build)
A
Andrey Kamaev 已提交
717 718 719 720
status("    JPEG:"      NOT WITH_JPEG OR JPEG_FOUND        THEN ${JPEG_FOUND}   ELSE build)
status("    PNG:"       NOT WITH_PNG OR PNG_FOUND          THEN ${PNG_FOUND}    ELSE build)
status("    TIFF:"      NOT WITH_TIFF OR TIFF_FOUND        THEN ${TIFF_FOUND}   ELSE build)
status("    JPEG 2000:" NOT WITH_JASPER OR JASPER_FOUND    THEN ${JASPER_FOUND} ELSE build)
721
status("    OpenEXR:"   WITH_OPENEXR AND OPENEXR_FOUND     THEN YES             ELSE NO)
A
Alexander Shishkov 已提交
722

723 724 725
status("    OpenNI:"    HAVE_OPENNI                        THEN YES             ELSE NO)
status("    OpenNI PrimeSensor Modules:"
                        HAVE_OPENNI_PRIME_SENSOR_MODULE    THEN YES             ELSE NO)
726 727 728
if(WIN32)
    status("    XIMEA:"     HAVE_XIMEA  THEN YES ELSE NO)
endif()
A
Alexander Shishkov 已提交
729

A
Andrey Kamaev 已提交
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
# video
status("")
if(UNIX AND NOT APPLE)
    status("  Video I/O:")
    status("    DC1394 1.x:"     HAVE_DC1394         THEN YES ELSE NO)
    status("    DC1394 2.x:"     HAVE_DC1394_2       THEN YES ELSE NO)
    status("    FFMPEG:"         HAVE_FFMPEG         THEN YES ELSE NO)
    status("      codec:"        HAVE_FFMPEG_CODEC   THEN YES ELSE NO)
    status("      format:"       HAVE_FFMPEG_FORMAT  THEN YES ELSE NO)
    status("      util:"         HAVE_FFMPEG_UTIL    THEN YES ELSE NO)
    status("      swscale:"      HAVE_FFMPEG_SWSCALE THEN YES ELSE NO)
    status("      gentoo-style:" HAVE_GENTOO_FFMPEG  THEN YES ELSE NO)
    status("    GStreamer:"      HAVE_GSTREAMER      THEN YES ELSE NO)
    status("    UniCap:"         HAVE_UNICAP         THEN YES ELSE NO)
    status("    PvAPI:"          HAVE_PVAPI          THEN YES ELSE NO)
745
    status("    V4L/V4L2:"       HAVE_LIBV4L         THEN "Using libv4l" ELSE ${HAVE_CAMV4L}/${HAVE_CAMV4L2})
A
Andrey Kamaev 已提交
746
    status("    Xine:"           HAVE_XINE           THEN YES ELSE NO)
A
Alexander Shishkov 已提交
747

A
Andrey Kamaev 已提交
748
    if(ANDROID)
749
        if(HAVE_opencv_androidcamera)
750
            status("    AndroidNativeCamera:" BUILD_ANDROID_CAMERA_WRAPPER THEN "YES, build for Android ${ANDROID_VERSION}" ELSE "YES, use prebuilt libraries")
A
Andrey Kamaev 已提交
751
        else()
752
            status("    AndroidNativeCamera:" "NO (native camera requires Android API level 8 or higher)")
A
Andrey Kamaev 已提交
753 754 755
        endif()
    endif()
elseif(APPLE)
756
    if(NOT IOS)
757
        status("  Video I/O:"    WITH_QUICKTIME      THEN QuickTime ELSE QTKit)
758 759 760
    else()
        status("  Video I/O: AVFoundation")
    endif()
A
Andrey Kamaev 已提交
761 762
elseif(WIN32)
    status("  Video I/O:"        HAVE_VIDEOINPUT     THEN DirectShow ELSE NO)
A
Alexander Shishkov 已提交
763 764
endif()

A
Andrey Kamaev 已提交
765 766
# Other third-party libraries
status("")
767
status("  Other third-party libraries:")
A
Alexander Shishkov 已提交
768 769

if(WITH_IPP AND IPP_FOUND)
A
Andrey Kamaev 已提交
770 771
    status("    Use IPP:" "${IPP_LATEST_VERSION_STR} [${IPP_LATEST_VERSION_MAJOR}.${IPP_LATEST_VERSION_MINOR}.${IPP_LATEST_VERSION_BUILD}]")
    status("         at:" "${IPP_ROOT_DIR}")
A
Alexander Shishkov 已提交
772
else()
773
    status("    Use IPP:"   WITH_IPP AND NOT IPP_FOUND THEN "IPP not found" ELSE NO)
A
Alexander Shishkov 已提交
774 775
endif()

776
status("    Use TBB:"   HAVE_TBB   THEN YES ELSE NO)
A
Andrey Kamaev 已提交
777 778
status("    Use Cuda:"  HAVE_CUDA  THEN YES ELSE NO)
status("    Use Eigen:" HAVE_EIGEN THEN YES ELSE NO)
A
Alexander Shishkov 已提交
779

780 781
status("")
status("  Python interpreter:"  PYTHON_EXECUTABLE        THEN "${PYTHON_EXECUTABLE} (ver ${PYTHON_VERSION_MAJOR_MINOR})" ELSE NO)
782 783 784
# interfaces to other languages
status("")
status("  Interfaces:")
785 786
status("    Python:"              HAVE_opencv_python THEN YES ELSE NO)
status("    Python numpy:"        PYTHON_USE_NUMPY THEN YES ELSE "NO (Python wrappers will not be generated)")
787
if(ANDROID)
788
    status("    Java:" HAVE_opencv_java THEN YES ELSE NO)
789
endif()
790

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

A
Andrey Kamaev 已提交
802 803 804
# samples and tests
status("")
status("  Tests and samples:")
805 806 807
status("    Tests:"             BUILD_TESTS       THEN YES ELSE NO)
status("    Performance tests:" BUILD_PERF_TESTS  THEN YES ELSE NO)
status("    Examples:"          BUILD_EXAMPLES    THEN YES ELSE NO)
A
Andrey Kamaev 已提交
808 809

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

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

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