b6c27b64d4
- Remove `Libraries/Str` - Replaced usage of `TactilityC` FreeRtos features with `TactilityFreeRtos` library - Update `tactility.py` - Removed redundant code from `TactilityCpp`
12 lines
314 B
CMake
12 lines
314 B
CMake
file(GLOB_RECURSE SOURCE_FILES
|
|
Source/*.c*
|
|
)
|
|
|
|
idf_component_register(
|
|
SRCS ${SOURCE_FILES}
|
|
# Library headers must be included directly,
|
|
# because all regular dependencies get stripped by elf_loader's cmake script
|
|
INCLUDE_DIRS ../../../Libraries/TactilityCpp/Include
|
|
REQUIRES TactilitySDK
|
|
)
|