cmake_minimum_required(VERSION 3.16)
project(qnbot_hand_cpp_consumer LANGUAGES CXX)

find_package(qnbot_hand 0.1 CONFIG REQUIRED)

add_executable(qnbot_hand_cpp_consumer main.cpp)
target_compile_features(qnbot_hand_cpp_consumer PRIVATE cxx_std_17)
target_link_libraries(qnbot_hand_cpp_consumer PRIVATE qnbot_hand::c)
