2010-05-12 01:44:00 +08:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# CMake file for C samples. See root CMakeLists.txt
|
|
|
|
#
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2014-06-24 23:18:51 +08:00
|
|
|
SET(OPENCV_CPP_SAMPLES_REQUIRED_DEPS opencv_core opencv_imgproc opencv_flann
|
2014-07-10 22:27:32 +08:00
|
|
|
opencv_imgcodecs opencv_videoio opencv_highgui opencv_ml opencv_video
|
|
|
|
opencv_objdetect opencv_photo opencv_nonfree opencv_features2d opencv_calib3d
|
|
|
|
opencv_stitching opencv_videostab opencv_shape)
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
ocv_check_dependencies(${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
|
|
|
|
if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND)
|
|
|
|
project(cpp_samples)
|
|
|
|
|
2012-03-03 23:49:23 +08:00
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/include")#for opencv.hpp
|
2012-02-03 19:26:49 +08:00
|
|
|
ocv_include_modules(${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})
|
|
|
|
|
2013-07-23 21:04:38 +08:00
|
|
|
if(HAVE_opencv_cudaoptflow)
|
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/cudaoptflow/include")
|
2013-06-04 17:32:35 +08:00
|
|
|
endif()
|
2013-07-23 20:59:34 +08:00
|
|
|
if(HAVE_opencv_cudaimgproc)
|
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/cudaimgproc/include")
|
2013-06-04 17:32:35 +08:00
|
|
|
endif()
|
2013-07-23 19:24:10 +08:00
|
|
|
if(HAVE_opencv_cudaarithm)
|
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/cudaarithm/include")
|
2013-06-04 17:32:35 +08:00
|
|
|
endif()
|
2013-07-23 20:24:55 +08:00
|
|
|
if(HAVE_opencv_cudafilters)
|
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/cudafilters/include")
|
2012-02-03 19:26:49 +08:00
|
|
|
endif()
|
|
|
|
|
2013-11-09 08:42:39 +08:00
|
|
|
if(HAVE_opencv_ocl)
|
|
|
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/ocl/include")
|
|
|
|
endif()
|
|
|
|
|
2012-04-09 05:49:19 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX AND NOT ENABLE_NOISY_WARNINGS)
|
2012-02-03 19:26:49 +08:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function")
|
|
|
|
endif()
|
2012-06-29 01:23:50 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
# ---------------------------------------------
|
|
|
|
# Define executable targets
|
|
|
|
# ---------------------------------------------
|
|
|
|
MACRO(OPENCV_DEFINE_CPP_EXAMPLE name srcs)
|
2012-11-08 15:41:27 +08:00
|
|
|
|
|
|
|
if("${srcs}" MATCHES "tutorial_code")
|
|
|
|
set(sample_kind tutorial)
|
|
|
|
set(sample_KIND TUTORIAL)
|
2013-08-07 16:53:48 +08:00
|
|
|
set(sample_subfolder "tutorials")
|
2012-11-08 15:41:27 +08:00
|
|
|
else()
|
|
|
|
set(sample_kind example)
|
|
|
|
set(sample_KIND EXAMPLE)
|
2013-08-07 16:53:48 +08:00
|
|
|
set(sample_subfolder "cpp")
|
2012-11-08 15:41:27 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(the_target "${sample_kind}_${name}")
|
2012-02-03 19:26:49 +08:00
|
|
|
add_executable(${the_target} ${srcs})
|
|
|
|
target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})
|
|
|
|
|
2013-06-04 17:32:35 +08:00
|
|
|
if("${srcs}" MATCHES "gpu/")
|
2013-07-23 20:24:55 +08:00
|
|
|
target_link_libraries(${the_target} opencv_cudaarithm opencv_cudafilters)
|
2012-02-03 19:26:49 +08:00
|
|
|
endif()
|
2011-09-07 16:59:39 +08:00
|
|
|
|
2013-11-09 08:42:39 +08:00
|
|
|
if(HAVE_opencv_ocl)
|
|
|
|
target_link_libraries(${the_target} opencv_ocl)
|
|
|
|
endif()
|
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
set_target_properties(${the_target} PROPERTIES
|
2012-11-08 15:41:27 +08:00
|
|
|
OUTPUT_NAME "cpp-${sample_kind}-${name}"
|
|
|
|
PROJECT_LABEL "(${sample_KIND}) ${name}")
|
2012-06-29 01:23:50 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
if(ENABLE_SOLUTION_FOLDERS)
|
2013-08-07 16:53:48 +08:00
|
|
|
set_target_properties(${the_target} PROPERTIES FOLDER "samples/${sample_subfolder}")
|
2012-02-03 19:26:49 +08:00
|
|
|
endif()
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
if(WIN32)
|
|
|
|
if (MSVC AND NOT BUILD_SHARED_LIBS)
|
|
|
|
set_target_properties(${the_target} PROPERTIES LINK_FLAGS "/NODEFAULTLIB:atlthunk.lib /NODEFAULTLIB:atlsd.lib /DEBUG")
|
|
|
|
endif()
|
|
|
|
install(TARGETS ${the_target}
|
2014-01-17 20:30:31 +08:00
|
|
|
RUNTIME DESTINATION "${OPENCV_SAMPLES_BIN_INSTALL_PATH}/${sample_subfolder}" COMPONENT samples)
|
2012-02-03 19:26:49 +08:00
|
|
|
endif()
|
|
|
|
ENDMACRO()
|
2012-06-29 01:23:50 +08:00
|
|
|
|
2012-11-07 22:21:20 +08:00
|
|
|
file(GLOB_RECURSE cpp_samples RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp)
|
|
|
|
|
|
|
|
if(NOT HAVE_OPENGL)
|
|
|
|
ocv_list_filterout(cpp_samples Qt_sample)
|
|
|
|
endif()
|
|
|
|
|
2013-07-23 20:24:55 +08:00
|
|
|
if(NOT HAVE_opencv_cudaarithm OR NOT HAVE_opencv_cudafilters)
|
2012-11-07 22:21:20 +08:00
|
|
|
ocv_list_filterout(cpp_samples "/gpu/")
|
|
|
|
endif()
|
2012-06-29 01:23:50 +08:00
|
|
|
|
2013-09-18 02:17:13 +08:00
|
|
|
ocv_list_filterout(cpp_samples "viz")
|
2012-06-29 01:23:50 +08:00
|
|
|
|
2014-04-09 22:58:53 +08:00
|
|
|
if(NOT HAVE_IPP_A)
|
|
|
|
ocv_list_filterout(cpp_samples "/ippasync/")
|
|
|
|
endif()
|
|
|
|
|
2012-02-03 19:26:49 +08:00
|
|
|
foreach(sample_filename ${cpp_samples})
|
|
|
|
get_filename_component(sample ${sample_filename} NAME_WE)
|
|
|
|
OPENCV_DEFINE_CPP_EXAMPLE(${sample} ${sample_filename})
|
|
|
|
endforeach()
|
|
|
|
endif()
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2013-12-29 06:28:43 +08:00
|
|
|
if(INSTALL_C_EXAMPLES AND NOT WIN32)
|
2012-02-03 19:26:49 +08:00
|
|
|
file(GLOB C_SAMPLES *.c *.cpp *.jpg *.png *.data makefile.* build_all.sh *.dsp *.cmd )
|
|
|
|
install(FILES ${C_SAMPLES}
|
2014-01-27 21:57:11 +08:00
|
|
|
DESTINATION ${OPENCV_SAMPLES_SRC_INSTALL_PATH}/cpp
|
2014-01-17 20:30:31 +08:00
|
|
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ COMPONENT samples)
|
2012-02-03 19:26:49 +08:00
|
|
|
endif()
|