Skip to content

Instantly share code, notes, and snippets.

@MRsoymilk
Created July 29, 2020 05:46
Show Gist options
  • Select an option

  • Save MRsoymilk/a979a2fda1c5fdc21dbf987668805db4 to your computer and use it in GitHub Desktop.

Select an option

Save MRsoymilk/a979a2fda1c5fdc21dbf987668805db4 to your computer and use it in GitHub Desktop.
opencv cmake
cmake_minimum_required(VERSION 2.8)
project(opencv_cmake)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(main ${OpenCV_LIBS})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment