Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
opencv-samples / usr / local / share / OpenCV / samples / hfs / CMakeLists.txt
Size: Mime:
cmake_minimum_required(VERSION 2.8)
project(example)
find_package(OpenCV REQUIRED)

set(SOURCES example.cpp)

include_directories(${OpenCV_INCLUDE_DIRS})
add_executable(example ${SOURCES} ${HEADERS})
target_link_libraries(example ${OpenCV_LIBS})