mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 19:36:26 +02:00
10 lines
231 B
CMake
10 lines
231 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
project(sheet5)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
find_package( OpenCV REQUIRED )
|
|
|
|
add_executable(sheet5 gauss_pyramid.cpp laplacian_pyramid.cpp main.cpp)
|
|
target_link_libraries(sheet5 ${OpenCV_LIBS})
|