2012-02-03 11:26:49 +00:00
|
|
|
set(the_description "The Core Functionality")
|
2015-06-05 16:24:38 +03:00
|
|
|
ocv_add_module(core
|
|
|
|
opencv_hal
|
2015-08-31 02:33:15 +03:00
|
|
|
PRIVATE_REQUIRED ${ZLIB_LIBRARIES} "${OPENCL_LIBRARIES}" "${VA_LIBRARIES}"
|
2015-02-19 16:17:19 +03:00
|
|
|
OPTIONAL opencv_cudev
|
2015-06-05 16:24:38 +03:00
|
|
|
WRAP java python)
|
2012-02-03 11:54:16 +00:00
|
|
|
|
2015-02-20 19:47:45 +03:00
|
|
|
set(extra_libs "")
|
|
|
|
|
|
|
|
if(WINRT AND CMAKE_SYSTEM_NAME MATCHES WindowsStore AND CMAKE_SYSTEM_VERSION MATCHES "8.0")
|
|
|
|
list(APPEND extra_libs ole32.lib)
|
2013-07-19 02:43:05 -07:00
|
|
|
endif()
|
|
|
|
|
2012-02-03 11:26:49 +00:00
|
|
|
if(HAVE_CUDA)
|
2014-02-24 14:35:34 +04:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef -Wenum-compare -Wunused-function -Wshadow)
|
2012-02-03 11:26:49 +00:00
|
|
|
endif()
|
|
|
|
|
2013-04-03 16:04:04 +04:00
|
|
|
file(GLOB lib_cuda_hdrs "include/opencv2/${name}/cuda/*.hpp" "include/opencv2/${name}/cuda/*.h")
|
|
|
|
file(GLOB lib_cuda_hdrs_detail "include/opencv2/${name}/cuda/detail/*.hpp" "include/opencv2/${name}/cuda/detail/*.h")
|
2013-04-04 20:54:35 +04:00
|
|
|
|
|
|
|
source_group("Cuda Headers" FILES ${lib_cuda_hdrs})
|
|
|
|
source_group("Cuda Headers\\Detail" FILES ${lib_cuda_hdrs_detail})
|
|
|
|
|
2014-08-01 18:11:20 +04:00
|
|
|
ocv_glob_module_sources(SOURCES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string.inc"
|
2013-04-03 16:04:04 +04:00
|
|
|
HEADERS ${lib_cuda_hdrs} ${lib_cuda_hdrs_detail})
|
2013-03-31 14:54:23 +04:00
|
|
|
|
2014-08-01 18:11:20 +04:00
|
|
|
ocv_module_include_directories(${the_module} ${ZLIB_INCLUDE_DIRS})
|
2015-02-20 19:47:45 +03:00
|
|
|
ocv_create_module(${extra_libs})
|
2012-02-03 11:26:49 +00:00
|
|
|
|
|
|
|
ocv_add_accuracy_tests()
|
|
|
|
ocv_add_perf_tests()
|