2010-05-12 01:44:00 +08:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# CMake file for C samples. See root CMakeLists.txt
|
|
|
|
#
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2012-03-15 22:36:01 +08:00
|
|
|
SET(OPENCV_CPP_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc
|
2013-03-13 11:31:43 +08:00
|
|
|
opencv_highgui opencv_ml opencv_video opencv_objdetect opencv_photo opencv_nonfree opencv_softcascade
|
2013-06-13 04:43:36 +08:00
|
|
|
opencv_features2d opencv_calib3d opencv_legacy opencv_contrib opencv_stitching opencv_videostab opencv_bioinspired)
|
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()
|
|
|
|
|
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-03-26 01:57:53 +08:00
|
|
|
set(sample_folder "samples//tutorials")
|
2012-11-08 15:41:27 +08:00
|
|
|
else()
|
|
|
|
set(sample_kind example)
|
|
|
|
set(sample_KIND EXAMPLE)
|
2013-03-26 01:57:53 +08:00
|
|
|
set(sample_folder "samples//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
|
|
|
|
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-03-26 01:57:53 +08:00
|
|
|
set_target_properties(${the_target} PROPERTIES FOLDER "${sample_folder}")
|
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}
|
2013-03-26 01:57:53 +08:00
|
|
|
RUNTIME DESTINATION "${sample_folder}" COMPONENT main)
|
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
|
|
|
|
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
|
|
|
|
|
|
|
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}
|
2012-06-29 01:23:50 +08:00
|
|
|
DESTINATION share/OpenCV/samples/cpp
|
2012-02-03 19:26:49 +08:00
|
|
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
|
|
|
|
endif()
|