mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
10 lines
202 B
CMake
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})
|