File: CMakeLists.txt

package info (click to toggle)
opencv 3.2.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 238,480 kB
  • sloc: xml: 901,650; cpp: 703,419; lisp: 20,142; java: 17,843; python: 17,641; ansic: 603; cs: 601; sh: 516; perl: 494; makefile: 117
file content (51 lines) | stat: -rw-r--r-- 891 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
set(the_description "Separate world module containing all contrib modules")

set(OPENCV_MODULE_IS_PART_OF_WORLD FALSE)
set(BUILD_opencv_contrib_world_INIT OFF) # disabled by default

# add new submodules to this list
set(OPENCV_MODULE_CHILDREN
  aruco
  bgsegm
  bioinspired
  ccalib
  cvv
  datasets
  dnn
  dpm
  face
  fuzzy
  hdf
  line_descriptor
  optflow
  plot
  reg
  rgbd
  saliency
  sfm
  stereo
  structured_light
  surface_matching
  text
  tracking
  xfeatures2d
  ximgproc
  xobjdetect
  xphoto
)
ocv_list_add_prefix(OPENCV_MODULE_CHILDREN "opencv_")

ocv_define_module(contrib_world)

# ocv_add_module(contrib_world)

# set(link_deps "")
# foreach(m ${OPENCV_MODULE_opencv_contrib_world_CHILDREN})
#   list(APPEND link_deps ${OPENCV_MODULE_${m}_LINK_DEPS})
# endforeach()

#
# ocv_glob_module_sources()
# ocv_module_include_directories()
#
# ocv_create_module(${link_deps})