CMakeLists.txt 2.47 KB
Newer Older
1 2 3 4 5
# ----------------------------------------------------------------------------
#  CMake file for C samples. See root CMakeLists.txt
#
# ----------------------------------------------------------------------------

6
SET(OPENCV_CPP_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc
7
    opencv_highgui opencv_ml opencv_video opencv_objdetect opencv_photo opencv_nonfree
Alexey Spizhevoy's avatar
Alexey Spizhevoy committed
8
    opencv_features2d opencv_calib3d opencv_legacy opencv_contrib opencv_stitching opencv_videostab)
9

10
ocv_check_dependencies(${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})
11

12 13

if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND)
Alexey Spizhevoy's avatar
Alexey Spizhevoy committed
14
  project(cpp_samples)
15

16
  ocv_include_directories("${OpenCV_SOURCE_DIR}/include")#for opencv.hpp
17 18 19
  ocv_include_modules(${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})

  if (HAVE_opencv_gpu)
20
    ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/gpu/include")
21 22
  endif()

23
  if(CMAKE_COMPILER_IS_GNUCXX AND NOT ENABLE_NOISY_WARNINGS)
24 25
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function")
  endif()
26

27 28 29 30 31 32 33 34 35 36 37
  # ---------------------------------------------
  #      Define executable targets
  # ---------------------------------------------
  MACRO(OPENCV_DEFINE_CPP_EXAMPLE name srcs)
    set(the_target "example_${name}")
    add_executable(${the_target} ${srcs})
    target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_CPP_SAMPLES_REQUIRED_DEPS})

    if (HAVE_opencv_gpu)
      target_link_libraries(${the_target} opencv_gpu)
    endif()
38

39 40 41
    set_target_properties(${the_target} PROPERTIES
      OUTPUT_NAME "${name}"
      PROJECT_LABEL "(EXAMPLE) ${name}")
42

43 44 45
    if(ENABLE_SOLUTION_FOLDERS)
      set_target_properties(${the_target} PROPERTIES FOLDER "samples//cpp")
    endif()
46

47 48 49 50 51 52 53 54
    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}
              RUNTIME DESTINATION "samples/cpp" COMPONENT main)
    endif()
  ENDMACRO()
55

56
  file(GLOB cpp_samples RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp)
57

58 59 60 61 62
  foreach(sample_filename ${cpp_samples})
    get_filename_component(sample ${sample_filename} NAME_WE)
    OPENCV_DEFINE_CPP_EXAMPLE(${sample}  ${sample_filename})
  endforeach()
endif()
63 64

if (INSTALL_C_EXAMPLES AND NOT WIN32)
65 66
  file(GLOB C_SAMPLES *.c *.cpp *.jpg *.png *.data makefile.* build_all.sh *.dsp *.cmd )
  install(FILES ${C_SAMPLES}
67
          DESTINATION share/OpenCV/samples/cpp
68 69
          PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
endif()
70