2011-06-30 15:37:56 +02:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# CMake file for Android samples. See root CMakeLists.txt
|
|
|
|
#
|
|
|
|
# ----------------------------------------------------------------------------
|
2012-03-27 18:05:52 +02:00
|
|
|
add_custom_target(opencv_android_examples)
|
2011-06-30 15:37:56 +02:00
|
|
|
|
2012-06-15 15:04:17 +02:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wmissing-declarations)
|
|
|
|
|
2012-03-27 18:05:52 +02:00
|
|
|
add_subdirectory(15-puzzle)
|
|
|
|
add_subdirectory(face-detection)
|
|
|
|
add_subdirectory(image-manipulations)
|
2013-08-08 07:31:25 +02:00
|
|
|
add_subdirectory(camera-calibration)
|
2012-04-27 17:39:46 +02:00
|
|
|
add_subdirectory(color-blob-detection)
|
2013-02-04 14:26:43 +01:00
|
|
|
add_subdirectory(tutorial-1-camerapreview)
|
2013-02-05 10:12:00 +01:00
|
|
|
add_subdirectory(tutorial-2-mixedprocessing)
|
2013-02-05 12:10:34 +01:00
|
|
|
add_subdirectory(tutorial-3-cameracontrol)
|
2015-08-12 17:36:09 +02:00
|
|
|
add_subdirectory(tutorial-4-opencl)
|
2011-06-30 15:37:56 +02:00
|
|
|
|
2013-04-17 14:55:05 +02:00
|
|
|
# hello-android sample
|
2012-03-27 18:05:52 +02:00
|
|
|
if(HAVE_opencv_highgui)
|
|
|
|
add_executable(hello-android hello-android/main.cpp)
|
2014-08-01 16:11:20 +02:00
|
|
|
ocv_target_include_modules_recurse(hello-android opencv_imgcodecs opencv_videoio opencv_highgui opencv_core)
|
|
|
|
ocv_target_link_libraries(hello-android ${OPENCV_LINKER_LIBS} opencv_imgcodecs opencv_videoio opencv_highgui opencv_core)
|
2012-02-03 12:26:49 +01:00
|
|
|
set_target_properties(hello-android PROPERTIES OUTPUT_NAME hello-android RUNTIME_OUTPUT_DIRECTORY "${EXECUTABLE_OUTPUT_PATH}")
|
2012-03-27 18:05:52 +02:00
|
|
|
add_dependencies(opencv_android_examples hello-android)
|
2011-06-30 15:37:56 +02:00
|
|
|
endif()
|