mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
43 lines
1.6 KiB
CMake
43 lines
1.6 KiB
CMake
set(OPENCV_INTERACTIVECALIBRATION_DEPS opencv_core opencv_imgproc opencv_features2d opencv_highgui opencv_calib3d opencv_videoio)
|
|
if(${BUILD_opencv_aruco})
|
|
list(APPEND OPENCV_INTERACTIVECALIBRATION_DEPS opencv_aruco)
|
|
endif()
|
|
ocv_check_dependencies(${OPENCV_INTERACTIVECALIBRATION_DEPS})
|
|
|
|
if(NOT OCV_DEPENDENCIES_FOUND)
|
|
return()
|
|
endif()
|
|
|
|
project(interactive-calibration)
|
|
set(the_target opencv_interactive-calibration)
|
|
|
|
ocv_target_include_directories(${the_target} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}" "${OpenCV_SOURCE_DIR}/include/opencv")
|
|
ocv_target_include_modules_recurse(${the_target} ${OPENCV_INTERACTIVECALIBRATION_DEPS})
|
|
|
|
file(GLOB SRCS *.cpp)
|
|
file(GLOB HDRS *.h*)
|
|
|
|
set(interactive-calibration_files ${SRCS} ${HDRS})
|
|
|
|
ocv_add_executable(${the_target} ${interactive-calibration_files})
|
|
ocv_target_link_libraries(${the_target} ${OPENCV_INTERACTIVECALIBRATION_DEPS})
|
|
|
|
set_target_properties(${the_target} PROPERTIES
|
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}"
|
|
ARCHIVE_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH}
|
|
RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}
|
|
INSTALL_NAME_DIR lib
|
|
OUTPUT_NAME "opencv_interactive-calibration")
|
|
|
|
if(ENABLE_SOLUTION_FOLDERS)
|
|
set_target_properties(${the_target} PROPERTIES FOLDER "applications")
|
|
endif()
|
|
|
|
if(INSTALL_CREATE_DISTRIB)
|
|
if(BUILD_SHARED_LIBS)
|
|
install(TARGETS ${the_target} RUNTIME DESTINATION ${OPENCV_BIN_INSTALL_PATH} CONFIGURATIONS Release COMPONENT dev)
|
|
endif()
|
|
else()
|
|
install(TARGETS ${the_target} OPTIONAL RUNTIME DESTINATION ${OPENCV_BIN_INSTALL_PATH} COMPONENT dev)
|
|
endif()
|