1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-07 03:46:25 +02:00
Files
uni/ccv/sheet2/CMakeLists.txt
2017-04-11 15:03:23 +02:00

10 lines
191 B
CMake

cmake_minimum_required(VERSION 3.5)
project(sheet2)
set(CMAKE_CXX_STANDARD 11)
find_package( OpenCV REQUIRED )
add_executable(sheet2 main.cpp)
target_link_libraries(sheet2 ${OpenCV_LIBS})