# A program built against the feather-tk wheel, the way a project with its
# own bindings would: see check.py.
cmake_minimum_required(VERSION 3.31)
project(wheel-consumer LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 20)

find_package(ftk REQUIRED)

add_executable(wheel-consumer main.cpp)
target_link_libraries(wheel-consumer ftk::ftkUI)
