Created
June 24, 2020 03:06
-
-
Save roodkcab/e003c3bdad7025c43d3173409ce58941 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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