mirror of
https://github.com/AntoineHX/LivingMachine.git
synced 2025-05-04 22:00:45 +02:00
6 lines
193 B
Text
6 lines
193 B
Text
|
cmake_minimum_required(VERSION 2.8)
|
||
|
project( DisplayImage )
|
||
|
find_package( OpenCV REQUIRED )
|
||
|
add_executable( DisplayImage DisplayImage.cpp )
|
||
|
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
|