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