Blame view

3rdparty/opencv-4.5.4/modules/videoio/cmake/detect_ximea.cmake 960 Bytes
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  if(NOT HAVE_XIMEA)
    if(WIN32)
      get_filename_component(regpath "[HKEY_CURRENT_USER\\Software\\XIMEA\\CamSupport\\API;Path]" ABSOLUTE)
      if(NOT EXISTS ${regpath})
        get_filename_component(regpath "[HKEY_LOCAL_MACHINE\\SOFTWARE\\XIMEA\\API_SoftwarePackage;Path]" ABSOLUTE)
      endif()
    endif()
    if(X86_64)
      set(lib_dir "API/x64" "API/64bit")
      set(lib_suffix "64")
    else()
      set(lib_dir "API/x86" "API/32bit")
      set(lib_suffix "32")
    endif()
    find_path(XIMEA_INCLUDE "xiApi.h"
      PATHS "${XIMEA_ROOT}" ENV XIMEA_ROOT "/opt/XIMEA"
      HINTS "${regpath}"
      PATH_SUFFIXES "include" "API")
    find_library(XIMEA_LIBRARY m3api xiapi${lib_suffix}
      PATHS "${XIMEA_ROOT}" ENV XIMEA_ROOT "/opt/XIMEA"
      HINTS "${regpath}"
      PATH_SUFFIXES ${lib_dir})
    if(XIMEA_INCLUDE AND XIMEA_LIBRARY)
      set(HAVE_XIMEA TRUE)
    endif()
  endif()
  
  if(HAVE_XIMEA)
    ocv_add_external_target(ximea "${XIMEA_INCLUDE}" "${XIMEA_LIBRARY}" "HAVE_XIMEA")
  endif()