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.
84 lines
3.0 KiB
84 lines
3.0 KiB
set(the_description "The Core Functionality") |
|
|
|
ocv_add_dispatched_file(mathfuncs_core SSE2 AVX AVX2) |
|
ocv_add_dispatched_file(stat SSE4_2 AVX2) |
|
ocv_add_dispatched_file(arithm SSE2 SSE4_1 AVX2) |
|
|
|
# dispatching for accuracy tests |
|
ocv_add_dispatched_file_force_all(test_intrin128 TEST SSE2 SSE3 SSSE3 SSE4_1 SSE4_2 AVX FP16 AVX2) |
|
ocv_add_dispatched_file_force_all(test_intrin256 TEST AVX2) |
|
|
|
ocv_add_module(core |
|
OPTIONAL opencv_cudev |
|
WRAP java python js) |
|
|
|
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(HAVE_TBB) |
|
list(APPEND extra_libs tbb) |
|
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() |
|
|
|
if(CV_TRACE AND HAVE_ITT AND BUILD_ITT) |
|
add_definitions(-DOPENCV_WITH_ITT=1) |
|
endif() |
|
|
|
file(GLOB lib_cuda_hdrs |
|
"${CMAKE_CURRENT_LIST_DIR}/include/opencv2/${name}/cuda/*.hpp" |
|
"${CMAKE_CURRENT_LIST_DIR}/include/opencv2/${name}/cuda/*.h") |
|
file(GLOB lib_cuda_hdrs_detail |
|
"${CMAKE_CURRENT_LIST_DIR}/include/opencv2/${name}/cuda/detail/*.hpp" |
|
"${CMAKE_CURRENT_LIST_DIR}/include/opencv2/${name}/cuda/detail/*.h") |
|
file(GLOB_RECURSE module_opencl_hdrs |
|
"${CMAKE_CURRENT_LIST_DIR}/include/opencv2/${name}/opencl/*") |
|
|
|
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 ${module_opencl_hdrs} ${lib_cuda_hdrs} ${lib_cuda_hdrs_detail}) |
|
|
|
ocv_module_include_directories(${the_module} ${ZLIB_INCLUDE_DIRS} ${OPENCL_INCLUDE_DIRS}) |
|
if(ANDROID AND HAVE_CPUFEATURES) |
|
ocv_append_source_file_compile_definitions(${CMAKE_CURRENT_SOURCE_DIR}/src/system.cpp "HAVE_CPUFEATURES=1") |
|
ocv_module_include_directories(${CPUFEATURES_INCLUDE_DIRS}) |
|
endif() |
|
if(ITT_INCLUDE_DIRS) |
|
ocv_module_include_directories(${ITT_INCLUDE_DIRS}) |
|
endif() |
|
if(HAVE_POSIX_MEMALIGN) |
|
ocv_append_source_file_compile_definitions(${CMAKE_CURRENT_SOURCE_DIR}/src/alloc.cpp "HAVE_POSIX_MEMALIGN=1") |
|
endif() |
|
if(HAVE_MALLOC_H) |
|
ocv_append_source_file_compile_definitions(${CMAKE_CURRENT_SOURCE_DIR}/src/alloc.cpp "HAVE_MALLOC_H=1") |
|
endif() |
|
if(HAVE_MEMALIGN) |
|
ocv_append_source_file_compile_definitions(${CMAKE_CURRENT_SOURCE_DIR}/src/alloc.cpp "HAVE_MEMALIGN=1") |
|
endif() |
|
|
|
ocv_create_module(${extra_libs}) |
|
|
|
ocv_target_link_libraries(${the_module} LINK_PRIVATE |
|
"${ZLIB_LIBRARIES}" "${OPENCL_LIBRARIES}" "${VA_LIBRARIES}" |
|
"${LAPACK_LIBRARIES}" "${CPUFEATURES_LIBRARIES}" "${HALIDE_LIBRARIES}" |
|
"${ITT_LIBRARIES}" |
|
"${OPENCV_HAL_LINKER_LIBS}" |
|
) |
|
|
|
ocv_add_accuracy_tests() |
|
ocv_add_perf_tests() |
|
|
|
ocv_install_3rdparty_licenses(SoftFloat "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/SoftFloat/COPYING.txt")
|
|
|