mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-26 09:38:40 +00:00
6 lines
203 B
CMake
6 lines
203 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project( App )
|
|
find_package( OpenCV REQUIRED )
|
|
include_directories( ${OpenCV_INCLUDE_DIRS} )
|
|
add_executable( App main.cpp )
|
|
target_link_libraries( App ${OpenCV_LIBS} ) |