cmake_minimum_required(VERSION 3.15)
project(PackageTest CXX)

find_package(opencv-dnn-ml CONFIG REQUIRED)

add_executable(example src/example.cpp)
target_include_directories(example PRIVATE opencv-dnn-ml::opencv-dnn-ml)
target_link_libraries(example opencv-dnn-ml::opencv-dnn-ml)

