2012-02-03 12:26:49 +01:00
|
|
|
set(the_description "The Core Functionality")
|
2015-06-05 15:24:38 +02:00
|
|
|
ocv_add_module(core
|
|
|
|
opencv_hal
|
2015-08-31 01:33:15 +02:00
|
|
|
PRIVATE_REQUIRED ${ZLIB_LIBRARIES} "${OPENCL_LIBRARIES}" "${VA_LIBRARIES}"
|
2015-02-19 14:17:19 +01:00
|
|
|
OPTIONAL opencv_cudev
|
2015-06-05 15:24:38 +02:00
|
|
|
WRAP java python)
|
2012-02-03 12:54:16 +01:00
|
|
|
|
2015-02-20 17:47:45 +01: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 11:43:05 +02:00
|
|
|
endif()
|
|
|
|
|
2012-02-03 12:26:49 +01:00
|
|
|
if(HAVE_CUDA)
|
2014-02-24 11:35:34 +01:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef -Wenum-compare -Wunused-function -Wshadow)
|
2012-02-03 12:26:49 +01:00
|
|
|
endif()
|
|
|
|
|
2013-04-03 14:04:04 +02: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 18:54:35 +02:00
|
|
|
|
|
|
|
source_group("Cuda Headers" FILES ${lib_cuda_hdrs})
|
|
|
|
source_group("Cuda Headers\\Detail" FILES ${lib_cuda_hdrs_detail})
|
|
|
|
|
2014-08-01 16:11:20 +02:00
|
|
|
ocv_glob_module_sources(SOURCES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string.inc"
|
2013-04-03 14:04:04 +02:00
|
|
|
HEADERS ${lib_cuda_hdrs} ${lib_cuda_hdrs_detail})
|
2013-03-31 12:54:23 +02:00
|
|
|
|
2014-08-01 16:11:20 +02:00
|
|
|
ocv_module_include_directories(${the_module} ${ZLIB_INCLUDE_DIRS})
|
2015-02-20 17:47:45 +01:00
|
|
|
ocv_create_module(${extra_libs})
|
2012-02-03 12:26:49 +01:00
|
|
|
|
|
|
|
ocv_add_accuracy_tests()
|
|
|
|
ocv_add_perf_tests()
|