Skip to content

Instantly share code, notes, and snippets.

@artemkonenko
Created March 4, 2016 09:50
Show Gist options
  • Save artemkonenko/2ef5bd543e2992c51a46 to your computer and use it in GitHub Desktop.
Save artemkonenko/2ef5bd543e2992c51a46 to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.1)
project(features)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp)
add_executable(features ${SOURCE_FILES})
set(OpenCV_LIBS opencv_core opencv_imgproc opencv_highgui opencv_xfeatures2d opencv_features2d opencv_imgcodecs opencv_flann)
target_link_libraries( features ${OpenCV_LIBS} )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment