OpenCV_4.2.0/opencv_contrib-4.2.0/modules/hfs/samples/CMakeLists.txt

10 lines
246 B
CMake
Raw Permalink Normal View History

2024-07-25 16:47:56 +08:00
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})