https://github.com/JiawangBian/GMS-Feature-Matcher
Revision fe34df197ba7e712f23d31253bf04b0ae2bcccb0 authored by T_hird on 02 May 2017, 08:21:08 UTC, committed by T_hird on 02 May 2017, 08:21:08 UTC
1 parent cbf0ca3
Raw File
Tip revision: fe34df197ba7e712f23d31253bf04b0ae2bcccb0 authored by T_hird on 02 May 2017, 08:21:08 UTC
bug fix
Tip revision: fe34df1
CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
project( gms_match_demo)

# OpenCV 
find_package( OpenCV REQUIRED )

# 
include_directories( 
 include
${OpenCV_INCLUDE_DIRS} 
)

# c++ 11
add_definitions(-std=c++11)


add_executable( gms_match_demo ./src/demo.cpp )
target_link_libraries( gms_match_demo ${OpenCV_LIBS} )
back to top