mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
set(the_description "The Core Functionality") |
|
|
|
ocv_add_dispatched_file(mathfuncs_core SSE2 AVX AVX2) |
|
|
|
ocv_add_module(core |
|
"${OPENCV_HAL_LINKER_LIBS}" |
|
OPTIONAL opencv_cudev |
|
WRAP java python) |
|
|
|
set(extra_libs "") |
|
|
|
if(WINRT AND CMAKE_SYSTEM_NAME MATCHES WindowsStore AND CMAKE_SYSTEM_VERSION MATCHES "8.0") |
|
list(APPEND extra_libs ole32.lib) |
|
endif() |
|
|
|
if(DEFINED WINRT AND NOT DEFINED ENABLE_WINRT_MODE_NATIVE) |
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /ZW") |
|
endif() |
|
|
|
if(HAVE_CUDA) |
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef -Wenum-compare -Wunused-function -Wshadow) |
|
endif() |
|
|
|
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") |
|
|
|
source_group("Include\\Cuda Headers" FILES ${lib_cuda_hdrs}) |
|
source_group("Include\\Cuda Headers\\Detail" FILES ${lib_cuda_hdrs_detail}) |
|
|
|
source_group("Src" FILES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string.inc") |
|
|
|
ocv_glob_module_sources(SOURCES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string.inc" |
|
HEADERS ${lib_cuda_hdrs} ${lib_cuda_hdrs_detail}) |
|
|
|
ocv_module_include_directories(${the_module} ${ZLIB_INCLUDE_DIRS} ${OPENCL_INCLUDE_DIRS}) |
|
ocv_create_module(${extra_libs}) |
|
|
|
ocv_target_link_libraries(${the_module} ${ZLIB_LIBRARIES} "${OPENCL_LIBRARIES}" "${VA_LIBRARIES}" "${LAPACK_LIBRARIES}") |
|
|
|
ocv_add_accuracy_tests() |
|
ocv_add_perf_tests()
|
|
|