OpenCVConfig.cmake 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. # ===================================================================================
  2. # The OpenCV CMake configuration file
  3. #
  4. # ** File generated automatically, do not modify **
  5. #
  6. # Usage from an external project:
  7. # In your CMakeLists.txt, add these lines:
  8. #
  9. # find_package(OpenCV REQUIRED)
  10. # include_directories(${OpenCV_INCLUDE_DIRS}) # Not needed for CMake >= 2.8.11
  11. # target_link_libraries(MY_TARGET_NAME ${OpenCV_LIBS})
  12. #
  13. # Or you can search for specific OpenCV modules:
  14. #
  15. # find_package(OpenCV REQUIRED core videoio)
  16. #
  17. # If the module is found then OPENCV_<MODULE>_FOUND is set to TRUE.
  18. #
  19. # This file will define the following variables:
  20. # - OpenCV_LIBS : The list of all imported targets for OpenCV modules.
  21. # - OpenCV_INCLUDE_DIRS : The OpenCV include directories.
  22. # - OpenCV_COMPUTE_CAPABILITIES : The version of compute capability.
  23. # - OpenCV_ANDROID_NATIVE_API_LEVEL : Minimum required level of Android API.
  24. # - OpenCV_VERSION : The version of this OpenCV build: "3.1.0"
  25. # - OpenCV_VERSION_MAJOR : Major version part of OpenCV_VERSION: "3"
  26. # - OpenCV_VERSION_MINOR : Minor version part of OpenCV_VERSION: "1"
  27. # - OpenCV_VERSION_PATCH : Patch version part of OpenCV_VERSION: "0"
  28. # - OpenCV_VERSION_STATUS : Development status of this build: ""
  29. #
  30. # Advanced variables:
  31. # - OpenCV_SHARED : Use OpenCV as shared library
  32. # - OpenCV_CONFIG_PATH : Path to this OpenCVConfig.cmake
  33. # - OpenCV_INSTALL_PATH : OpenCV location (not set on Windows)
  34. # - OpenCV_LIB_COMPONENTS : Present OpenCV modules list
  35. # - OpenCV_USE_MANGLED_PATHS : Mangled OpenCV path flag
  36. # - OpenCV_MODULES_SUFFIX : The suffix for OpenCVModules-XXX.cmake file
  37. #
  38. # Deprecated variables:
  39. # - OpenCV_VERSION_TWEAK : Always "0"
  40. #
  41. # ===================================================================================
  42. # Search packages for host system instead of packages for target system.
  43. # in case of cross compilation thess macro should be defined by toolchain file
  44. if(NOT COMMAND find_host_package)
  45. macro(find_host_package)
  46. find_package(${ARGN})
  47. endmacro()
  48. endif()
  49. if(NOT COMMAND find_host_program)
  50. macro(find_host_program)
  51. find_program(${ARGN})
  52. endmacro()
  53. endif()
  54. if(NOT DEFINED OpenCV_MODULES_SUFFIX)
  55. if(ANDROID)
  56. string(REPLACE - _ OpenCV_MODULES_SUFFIX "_${ANDROID_NDK_ABI_NAME}")
  57. else()
  58. set(OpenCV_MODULES_SUFFIX "")
  59. endif()
  60. endif()
  61. if("FALSE" STREQUAL "TRUE") # value is defined by package builder (use STREQUAL to comply new CMake policy CMP0012)
  62. if(NOT TARGET ippicv)
  63. if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/non-existed-path")
  64. add_library(ippicv STATIC IMPORTED)
  65. set_target_properties(ippicv PROPERTIES
  66. IMPORTED_LINK_INTERFACE_LIBRARIES ""
  67. IMPORTED_LOCATION "${CMAKE_CURRENT_LIST_DIR}/non-existed-path"
  68. )
  69. endif()
  70. endif()
  71. endif()
  72. if(NOT TARGET opencv_core)
  73. # Extract directory name from full path of the file currently being processed.
  74. # Note that CMake 2.8.3 introduced CMAKE_CURRENT_LIST_DIR. We reimplement it
  75. # for older versions of CMake to support these as well.
  76. if(CMAKE_VERSION VERSION_LESS "2.8.3")
  77. get_filename_component(CMAKE_CURRENT_LIST_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  78. endif()
  79. include(${CMAKE_CURRENT_LIST_DIR}/OpenCVModules${OpenCV_MODULES_SUFFIX}.cmake)
  80. endif()
  81. # TODO All things below should be reviewed. What is about of moving this code into related modules (special vars/hooks/files)
  82. # Version Compute Capability from which OpenCV has been compiled is remembered
  83. set(OpenCV_COMPUTE_CAPABILITIES "")
  84. set(OpenCV_CUDA_VERSION )
  85. set(OpenCV_USE_CUBLAS )
  86. set(OpenCV_USE_CUFFT )
  87. set(OpenCV_USE_NVCUVID )
  88. # Android API level from which OpenCV has been compiled is remembered
  89. if(ANDROID)
  90. set(OpenCV_ANDROID_NATIVE_API_LEVEL 0)
  91. else()
  92. set(OpenCV_ANDROID_NATIVE_API_LEVEL 0)
  93. endif()
  94. # Some additional settings are required if OpenCV is built as static libs
  95. set(OpenCV_SHARED ON)
  96. # Enables mangled install paths, that help with side by side installs
  97. set(OpenCV_USE_MANGLED_PATHS FALSE)
  98. # Extract the directory where *this* file has been installed (determined at cmake run-time)
  99. get_filename_component(OpenCV_CONFIG_PATH "${CMAKE_CURRENT_LIST_FILE}" PATH CACHE)
  100. if(NOT WIN32 OR ANDROID)
  101. if(ANDROID)
  102. set(OpenCV_INSTALL_PATH "${OpenCV_CONFIG_PATH}/../../..")
  103. else()
  104. set(OpenCV_INSTALL_PATH "${OpenCV_CONFIG_PATH}/../..")
  105. endif()
  106. # Get the absolute path with no ../.. relative marks, to eliminate implicit linker warnings
  107. if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_LESS 2.8)
  108. get_filename_component(OpenCV_INSTALL_PATH "${OpenCV_INSTALL_PATH}" ABSOLUTE)
  109. else()
  110. get_filename_component(OpenCV_INSTALL_PATH "${OpenCV_INSTALL_PATH}" REALPATH)
  111. endif()
  112. endif()
  113. # ======================================================
  114. # Include directories to add to the user project:
  115. # ======================================================
  116. # Provide the include directories to the caller
  117. set(OpenCV_INCLUDE_DIRS "${OpenCV_INSTALL_PATH}/include/opencv;${OpenCV_INSTALL_PATH}/include")
  118. # ======================================================
  119. # Link directories to add to the user project:
  120. # ======================================================
  121. # Provide the libs directories to the caller
  122. set(OpenCV_LIB_DIR_OPT CACHE PATH "Path where release OpenCV libraries are located")
  123. set(OpenCV_LIB_DIR_DBG CACHE PATH "Path where debug OpenCV libraries are located")
  124. set(OpenCV_3RDPARTY_LIB_DIR_OPT "${OpenCV_INSTALL_PATH}/share/OpenCV/3rdparty/lib" CACHE PATH "Path where release 3rdparty OpenCV dependencies are located")
  125. set(OpenCV_3RDPARTY_LIB_DIR_DBG "${OpenCV_INSTALL_PATH}/share/OpenCV/3rdparty/lib" CACHE PATH "Path where debug 3rdparty OpenCV dependencies are located")
  126. mark_as_advanced(FORCE OpenCV_LIB_DIR_OPT OpenCV_LIB_DIR_DBG OpenCV_3RDPARTY_LIB_DIR_OPT OpenCV_3RDPARTY_LIB_DIR_DBG OpenCV_CONFIG_PATH)
  127. # ======================================================
  128. # Version variables:
  129. # ======================================================
  130. SET(OpenCV_VERSION 3.1.0)
  131. SET(OpenCV_VERSION_MAJOR 3)
  132. SET(OpenCV_VERSION_MINOR 1)
  133. SET(OpenCV_VERSION_PATCH 0)
  134. SET(OpenCV_VERSION_TWEAK 0)
  135. SET(OpenCV_VERSION_STATUS "")
  136. # ====================================================================
  137. # Link libraries: e.g. opencv_core;opencv_imgproc; etc...
  138. # ====================================================================
  139. SET(OpenCV_LIB_COMPONENTS opencv_xphoto;opencv_xobjdetect;opencv_ximgproc;opencv_xfeatures2d;opencv_tracking;opencv_text;opencv_surface_matching;opencv_structured_light;opencv_stereo;opencv_saliency;opencv_rgbd;opencv_reg;opencv_plot;opencv_optflow;opencv_line_descriptor;opencv_fuzzy;opencv_face;opencv_dpm;opencv_dnn;opencv_datasets;opencv_cvv;opencv_ccalib;opencv_bioinspired;opencv_bgsegm;opencv_aruco;opencv_videostab;opencv_videoio;opencv_video;opencv_superres;opencv_stitching;opencv_shape;opencv_photo;opencv_objdetect;opencv_ml;opencv_imgproc;opencv_imgcodecs;opencv_highgui;opencv_flann;opencv_features2d;opencv_core;opencv_calib3d)
  140. list(REMOVE_ITEM OpenCV_LIB_COMPONENTS opencv_hal)
  141. SET(OpenCV_WORLD_COMPONENTS )
  142. # ==============================================================
  143. # Extra include directories, needed by OpenCV 2 new structure
  144. # ==============================================================
  145. SET(OpenCV2_INCLUDE_DIRS "")
  146. if(OpenCV2_INCLUDE_DIRS)
  147. list(APPEND OpenCV_INCLUDE_DIRS ${OpenCV2_INCLUDE_DIRS})
  148. set(OpenCV_ADD_DEBUG_RELEASE FALSE)
  149. if(OpenCV_ADD_DEBUG_RELEASE)
  150. set(OpenCV_LIB_DIR_OPT "${OpenCV_LIB_DIR_OPT}/Release")
  151. set(OpenCV_LIB_DIR_DBG "${OpenCV_LIB_DIR_DBG}/Debug")
  152. set(OpenCV_3RDPARTY_LIB_DIR_OPT "${OpenCV_3RDPARTY_LIB_DIR_OPT}/Release")
  153. set(OpenCV_3RDPARTY_LIB_DIR_DBG "${OpenCV_3RDPARTY_LIB_DIR_DBG}/Debug")
  154. endif()
  155. endif()
  156. if(NOT CMAKE_VERSION VERSION_LESS "2.8.11")
  157. # Target property INTERFACE_INCLUDE_DIRECTORIES available since 2.8.11:
  158. # * http://www.cmake.org/cmake/help/v2.8.11/cmake.html#prop_tgt:INTERFACE_INCLUDE_DIRECTORIES
  159. foreach(__component ${OpenCV_LIB_COMPONENTS})
  160. if(TARGET ${__component})
  161. set_target_properties(
  162. ${__component}
  163. PROPERTIES
  164. INTERFACE_INCLUDE_DIRECTORIES "${OpenCV_INCLUDE_DIRS}"
  165. )
  166. endif()
  167. endforeach()
  168. endif()
  169. # ==============================================================
  170. # Check OpenCV availability
  171. # ==============================================================
  172. if(ANDROID AND OpenCV_ANDROID_NATIVE_API_LEVEL GREATER ANDROID_NATIVE_API_LEVEL)
  173. message(FATAL_ERROR "Minimum required by OpenCV API level is android-${OpenCV_ANDROID_NATIVE_API_LEVEL}")
  174. #always FATAL_ERROR because we can't say to the caller that OpenCV is not found
  175. #http://www.mail-archive.com/cmake@cmake.org/msg37831.html
  176. if(OpenCV_FIND_REQUIRED)
  177. message(FATAL_ERROR "Minimum required by OpenCV API level is android-${OpenCV_ANDROID_NATIVE_API_LEVEL}")
  178. elseif(NOT OpenCV_FIND_QUIETLY)
  179. message(WARNING "Minimum required by OpenCV API level is android-${OpenCV_ANDROID_NATIVE_API_LEVEL}")
  180. endif()
  181. set(OpenCV_FOUND "OpenCV_FOUND-NOTFOUND")
  182. return()#Android toolchain requires CMake > 2.6
  183. endif()
  184. # ==============================================================
  185. # Form list of modules (components) to find
  186. # ==============================================================
  187. if(NOT OpenCV_FIND_COMPONENTS)
  188. set(OpenCV_FIND_COMPONENTS ${OpenCV_LIB_COMPONENTS})
  189. list(REMOVE_ITEM OpenCV_FIND_COMPONENTS opencv_java)
  190. if(GTest_FOUND OR GTEST_FOUND)
  191. list(REMOVE_ITEM OpenCV_FIND_COMPONENTS opencv_ts)
  192. endif()
  193. endif()
  194. # expand short module names and see if requested components exist
  195. set(OpenCV_FIND_COMPONENTS_ "")
  196. foreach(__cvcomponent ${OpenCV_FIND_COMPONENTS})
  197. if(NOT __cvcomponent MATCHES "^opencv_")
  198. set(__cvcomponent opencv_${__cvcomponent})
  199. endif()
  200. list(FIND OpenCV_LIB_COMPONENTS ${__cvcomponent} __cvcomponentIdx)
  201. if(__cvcomponentIdx LESS 0)
  202. #requested component is not found...
  203. if(OpenCV_FIND_REQUIRED)
  204. message(FATAL_ERROR "${__cvcomponent} is required but was not found")
  205. elseif(NOT OpenCV_FIND_QUIETLY)
  206. message(WARNING "${__cvcomponent} is required but was not found")
  207. endif()
  208. #indicate that module is NOT found
  209. string(TOUPPER "${__cvcomponent}" __cvcomponentUP)
  210. set(${__cvcomponentUP}_FOUND "${__cvcomponentUP}_FOUND-NOTFOUND")
  211. else()
  212. list(APPEND OpenCV_FIND_COMPONENTS_ ${__cvcomponent})
  213. # Not using list(APPEND) here, because OpenCV_LIBS may not exist yet.
  214. # Also not clearing OpenCV_LIBS anywhere, so that multiple calls
  215. # to find_package(OpenCV) with different component lists add up.
  216. set(OpenCV_LIBS ${OpenCV_LIBS} "${__cvcomponent}")
  217. #indicate that module is found
  218. string(TOUPPER "${__cvcomponent}" __cvcomponentUP)
  219. set(${__cvcomponentUP}_FOUND 1)
  220. endif()
  221. if(OpenCV_SHARED AND ";${OpenCV_WORLD_COMPONENTS};" MATCHES ";${__cvcomponent};" AND NOT TARGET ${__cvcomponent})
  222. get_target_property(__implib_dbg opencv_world IMPORTED_IMPLIB_DEBUG)
  223. get_target_property(__implib_release opencv_world IMPORTED_IMPLIB_RELEASE)
  224. get_target_property(__location_dbg opencv_world IMPORTED_LOCATION_DEBUG)
  225. get_target_property(__location_release opencv_world IMPORTED_LOCATION_RELEASE)
  226. add_library(${__cvcomponent} SHARED IMPORTED)
  227. if(__location_dbg)
  228. set_property(TARGET ${__cvcomponent} APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
  229. set_target_properties(${__cvcomponent} PROPERTIES
  230. IMPORTED_IMPLIB_DEBUG "${__implib_dbg}"
  231. IMPORTED_LINK_INTERFACE_LIBRARIES_DEBUG ""
  232. IMPORTED_LOCATION_DEBUG "${__location_dbg}"
  233. )
  234. endif()
  235. if(__location_release)
  236. set_property(TARGET ${__cvcomponent} APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
  237. set_target_properties(${__cvcomponent} PROPERTIES
  238. IMPORTED_IMPLIB_RELEASE "${__implib_release}"
  239. IMPORTED_LINK_INTERFACE_LIBRARIES_RELEASE ""
  240. IMPORTED_LOCATION_RELEASE "${__location_release}"
  241. )
  242. endif()
  243. endif()
  244. endforeach()
  245. set(OpenCV_FIND_COMPONENTS ${OpenCV_FIND_COMPONENTS_})
  246. # ==============================================================
  247. # Resolve dependencies
  248. # ==============================================================
  249. if(OpenCV_USE_MANGLED_PATHS)
  250. set(OpenCV_LIB_SUFFIX ".${OpenCV_VERSION_MAJOR}.${OpenCV_VERSION_MINOR}.${OpenCV_VERSION_PATCH}")
  251. else()
  252. set(OpenCV_LIB_SUFFIX "")
  253. endif()
  254. foreach(__opttype OPT DBG)
  255. SET(OpenCV_LIBS_${__opttype} "${OpenCV_LIBS}")
  256. SET(OpenCV_EXTRA_LIBS_${__opttype} "")
  257. # CUDA
  258. if(OpenCV_CUDA_VERSION)
  259. if(NOT CUDA_FOUND)
  260. find_host_package(CUDA ${OpenCV_CUDA_VERSION} EXACT REQUIRED)
  261. else()
  262. if(NOT CUDA_VERSION_STRING VERSION_EQUAL OpenCV_CUDA_VERSION)
  263. message(FATAL_ERROR "OpenCV static library was compiled with CUDA ${OpenCV_CUDA_VERSION} support. Please, use the same version or rebuild OpenCV with CUDA ${CUDA_VERSION_STRING}")
  264. endif()
  265. endif()
  266. set(OpenCV_CUDA_LIBS_ABSPATH ${CUDA_LIBRARIES})
  267. if(${CUDA_VERSION} VERSION_LESS "5.5")
  268. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_npp_LIBRARY})
  269. else()
  270. find_cuda_helper_libs(nppc)
  271. find_cuda_helper_libs(nppi)
  272. find_cuda_helper_libs(npps)
  273. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_nppc_LIBRARY} ${CUDA_nppi_LIBRARY} ${CUDA_npps_LIBRARY})
  274. endif()
  275. if(OpenCV_USE_CUBLAS)
  276. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_CUBLAS_LIBRARIES})
  277. endif()
  278. if(OpenCV_USE_CUFFT)
  279. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_CUFFT_LIBRARIES})
  280. endif()
  281. if(OpenCV_USE_NVCUVID)
  282. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_nvcuvid_LIBRARIES})
  283. endif()
  284. if(WIN32)
  285. list(APPEND OpenCV_CUDA_LIBS_ABSPATH ${CUDA_nvcuvenc_LIBRARIES})
  286. endif()
  287. set(OpenCV_CUDA_LIBS_RELPATH "")
  288. foreach(l ${OpenCV_CUDA_LIBS_ABSPATH})
  289. get_filename_component(_tmp ${l} PATH)
  290. if(NOT ${_tmp} MATCHES "-Wl.*")
  291. list(APPEND OpenCV_CUDA_LIBS_RELPATH ${_tmp})
  292. endif()
  293. endforeach()
  294. list(REMOVE_DUPLICATES OpenCV_CUDA_LIBS_RELPATH)
  295. link_directories(${OpenCV_CUDA_LIBS_RELPATH})
  296. endif()
  297. endforeach()
  298. # ==============================================================
  299. # Compatibility stuff
  300. # ==============================================================
  301. if(CMAKE_BUILD_TYPE MATCHES "Debug")
  302. SET(OpenCV_LIB_DIR ${OpenCV_LIB_DIR_DBG} ${OpenCV_3RDPARTY_LIB_DIR_DBG})
  303. else()
  304. SET(OpenCV_LIB_DIR ${OpenCV_LIB_DIR_OPT} ${OpenCV_3RDPARTY_LIB_DIR_OPT})
  305. endif()
  306. set(OpenCV_LIBRARIES ${OpenCV_LIBS})
  307. if(CMAKE_CROSSCOMPILING AND OpenCV_SHARED AND (CMAKE_SYSTEM_NAME MATCHES "Linux"))
  308. foreach(dir ${OpenCV_LIB_DIR})
  309. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-rpath-link,${dir}")
  310. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-rpath-link,${dir}")
  311. set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-rpath-link,${dir}")
  312. endforeach()
  313. endif()
  314. #
  315. # Some macroses for samples
  316. #
  317. macro(ocv_check_dependencies)
  318. set(OCV_DEPENDENCIES_FOUND TRUE)
  319. foreach(d ${ARGN})
  320. if(NOT TARGET ${d})
  321. message(WARNING "OpenCV: Can't resolve dependency: ${d}")
  322. set(OCV_DEPENDENCIES_FOUND FALSE)
  323. break()
  324. endif()
  325. endforeach()
  326. endmacro()
  327. # adds include directories in such way that directories from the OpenCV source tree go first
  328. function(ocv_include_directories)
  329. set(__add_before "")
  330. file(TO_CMAKE_PATH "${OpenCV_DIR}" __baseDir)
  331. foreach(dir ${ARGN})
  332. get_filename_component(__abs_dir "${dir}" ABSOLUTE)
  333. if("${__abs_dir}" MATCHES "^${__baseDir}")
  334. list(APPEND __add_before "${dir}")
  335. else()
  336. include_directories(AFTER SYSTEM "${dir}")
  337. endif()
  338. endforeach()
  339. include_directories(BEFORE ${__add_before})
  340. endfunction()
  341. macro(ocv_include_modules)
  342. include_directories(BEFORE "${OpenCV_INCLUDE_DIRS}")
  343. endmacro()
  344. macro(ocv_include_modules_recurse)
  345. include_directories(BEFORE "${OpenCV_INCLUDE_DIRS}")
  346. endmacro()
  347. macro(ocv_target_link_libraries)
  348. target_link_libraries(${ARGN})
  349. endmacro()
  350. # remove all matching elements from the list
  351. macro(ocv_list_filterout lst regex)
  352. foreach(item ${${lst}})
  353. if(item MATCHES "${regex}")
  354. list(REMOVE_ITEM ${lst} "${item}")
  355. endif()
  356. endforeach()
  357. endmacro()