mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-19 06:38:39 +00:00
7 lines
233 B
CMake
7 lines
233 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project( App )
|
|
find_package( OpenCV REQUIRED )
|
|
include_directories( ${OpenCV_INCLUDE_DIRS} )
|
|
set( CMAKE_BUILD_TYPE Debug )
|
|
add_executable( App main.cpp )
|
|
target_link_libraries( App ${OpenCV_LIBS} ) |