CMakeLists.txt 304 Bytes
cmake_minimum_required(VERSION 2.8)
project( yolo_mark CXX )
find_package( OpenCV REQUIRED )

set( sources main.cpp )

add_executable( yolo_mark ${sources} )

target_compile_options( yolo_mark PUBLIC -std=c++11 -fpermissive -w -Wall )

target_link_libraries( yolo_mark ${OpenCV_LIBS} -L/usr/lib64 -ldl )