Fixes and improvements (#616)

This commit is contained in:
Ken Van Hoeylandt
2026-08-18 20:43:07 +02:00
committed by GitHub
parent f943c4dd69
commit b03759a111
141 changed files with 899 additions and 221 deletions
+21
View File
@@ -0,0 +1,21 @@
cmake_minimum_required(VERSION 3.20)
if (DEFINED ENV{ESP_IDF_VERSION})
idf_component_register(
INCLUDE_DIRS "Include/"
REQUIRES TactilityKernel
)
else()
add_library(TactilityKernelCpp INTERFACE)
target_include_directories(TactilityKernelCpp
INTERFACE Include/
)
target_link_libraries(TactilityKernelCpp
INTERFACE TactilityKernel
)
endif()