opencv/modules/core/CMakeLists.txt

23 lines
831 B
CMake
Raw Normal View History

set(the_description "The Core Functionality")
2012-02-24 21:53:22 +08:00
ocv_add_module(core ${ZLIB_LIBRARIES})
2013-03-31 18:54:23 +08:00
ocv_module_include_directories(${ZLIB_INCLUDE_DIR})
2012-02-03 19:54:16 +08:00
if(HAVE_CUDA)
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef)
endif()
2013-04-03 20:04:04 +08: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-05 00:54:35 +08:00
source_group("Cuda Headers" FILES ${lib_cuda_hdrs})
source_group("Cuda Headers\\Detail" FILES ${lib_cuda_hdrs_detail})
2013-03-31 18:54:23 +08:00
ocv_glob_module_sources(SOURCES "${opencv_core_BINARY_DIR}/version_string.inc"
2013-04-03 20:04:04 +08:00
HEADERS ${lib_cuda_hdrs} ${lib_cuda_hdrs_detail})
2013-03-31 18:54:23 +08:00
ocv_create_module()
ocv_add_precompiled_headers(${the_module})
ocv_add_accuracy_tests()
ocv_add_perf_tests()