parent
312c8fa7e1
commit
2b74ca6f12
14 changed files with 65 additions and 16 deletions
@ -0,0 +1,43 @@ |
||||
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 |
||||
bgsegm |
||||
bioinspired |
||||
ccalib |
||||
cvv |
||||
datasets |
||||
face |
||||
latentsvm |
||||
line_descriptor |
||||
optflow |
||||
reg |
||||
rgbd |
||||
saliency |
||||
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}) |
@ -0,0 +1,5 @@ |
||||
#ifndef __OPENCV_CONTRIB_WORLD_HPP__ |
||||
#define __OPENCV_CONTRIB_WORLD_HPP__ |
||||
|
||||
|
||||
#endif |
@ -0,0 +1 @@ |
||||
#include "opencv2/contrib_world.hpp" |
Loading…
Reference in new issue