cmake_minimum_required(VERSION 3.13)

project(TanvasTouchCAPIExample)

find_program(CLANG_TIDY NAMES clang-tidy)

if (CLANG_TIDY)
    message(STATUS "Using clang-tidy: ${CLANG_TIDY}")
    set(CLANG_TIDY_RUN "${CLANG_TIDY}" "-checks=*,-fuchsia*,-google-runtime-references")
endif ()

add_subdirectory(src)