2012-02-03 19:26:49 +08:00
|
|
|
set(the_description "The Core Functionality")
|
2012-02-24 21:53:22 +08:00
|
|
|
ocv_add_module(core ${ZLIB_LIBRARIES})
|
2012-02-03 19:54:16 +08:00
|
|
|
ocv_module_include_directories(${ZLIB_INCLUDE_DIR})
|
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
if(HAVE_CUDA)
|
2012-08-21 17:59:27 +08:00
|
|
|
ocv_source_group("Src\\Cuda" GLOB "src/cuda/*.cu")
|
2012-06-09 23:00:04 +08:00
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/gpu/src" "${OpenCV_SOURCE_DIR}/modules/gpu/src/cuda" ${CUDA_INCLUDE_DIRS})
|
2012-06-09 01:09:38 +08:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef)
|
2012-08-21 17:59:27 +08:00
|
|
|
|
|
|
|
file(GLOB lib_cuda "src/cuda/*.cu")
|
2012-06-09 23:00:04 +08:00
|
|
|
ocv_cuda_compile(cuda_objs ${lib_cuda})
|
2012-06-09 01:09:38 +08:00
|
|
|
|
2012-08-21 17:59:27 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
set(cuda_link_libs ${CUDA_LIBRARIES} ${CUDA_npp_LIBRARY})
|
2011-04-26 23:46:15 +08:00
|
|
|
else()
|
2012-02-03 19:26:49 +08:00
|
|
|
set(lib_cuda "")
|
|
|
|
set(cuda_objs "")
|
|
|
|
set(cuda_link_libs "")
|
|
|
|
endif()
|
|
|
|
|
2012-05-03 04:20:14 +08:00
|
|
|
ocv_glob_module_sources(SOURCES ${lib_cuda} ${cuda_objs} "${opencv_core_BINARY_DIR}/version_string.inc")
|
2012-02-03 19:26:49 +08:00
|
|
|
|
|
|
|
ocv_create_module(${cuda_link_libs})
|
|
|
|
ocv_add_precompiled_headers(${the_module})
|
|
|
|
|
|
|
|
ocv_add_accuracy_tests()
|
|
|
|
ocv_add_perf_tests()
|
|
|
|
|