cmake_minimum_required(VERSION 3.16)
project(qnbot_hand_calibration_c LANGUAGES C)

find_package(qnbot_hand 0.1 CONFIG REQUIRED)

add_executable(qnbot_hand_calibration_c main.c)
target_link_libraries(qnbot_hand_calibration_c PRIVATE qnbot_hand::c)
