mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
15 lines
442 B
CMake
15 lines
442 B
CMake
set(the_description "The Core Functionality")
|
|
ocv_add_module(core ${ZLIB_LIBRARIES})
|
|
ocv_module_include_directories(${ZLIB_INCLUDE_DIR} "${OpenCV_SOURCE_DIR}/modules/gpu/include")
|
|
|
|
if(HAVE_CUDA)
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef)
|
|
endif()
|
|
|
|
ocv_glob_module_sources(SOURCES "${opencv_core_BINARY_DIR}/version_string.inc")
|
|
ocv_create_module()
|
|
ocv_add_precompiled_headers(${the_module})
|
|
|
|
ocv_add_accuracy_tests()
|
|
ocv_add_perf_tests()
|