9ba1d460bd
Recently the SDK removed GPIO functionality because pins are now exclusively claimed by a driver. That means the GPIO app can't claim pins that are already in use... except when it calls the ESP-IDF driver code directly, which is what the app now does.
13 lines
322 B
CMake
13 lines
322 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 driver
|
|
)
|
|
|