1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-07 03:46:25 +02:00
Files
uni/ccv/sheet6/CMakeLists.txt
2017-05-16 15:42:29 +02:00

10 lines
202 B
CMake

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