Skip to content

Instantly share code, notes, and snippets.

@roodkcab
Created June 24, 2020 03:06
Show Gist options
  • Select an option

  • Save roodkcab/e003c3bdad7025c43d3173409ce58941 to your computer and use it in GitHub Desktop.

Select an option

Save roodkcab/e003c3bdad7025c43d3173409ce58941 to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.16)
project(${PROJ})
set(CMAKE_CXX_STANDARD 20)
find_package( OpenCV REQUIRED )
include_directories( ${OpenCV_INCLUDE_DIRS} )
add_executable(${PROJ} main.cpp)
target_link_libraries( practice ${OpenCV_LIBS} )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment