mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-18 09:25:06 +00:00
11 lines
234 B
CMake
11 lines
234 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
file(GLOB_RECURSE SOURCES "source/*.c**")
|
|
|
|
idf_component_register(
|
|
SRCS ${SOURCES}
|
|
INCLUDE_DIRS "include/"
|
|
PRIV_INCLUDE_DIRS "private/"
|
|
REQUIRES TactilityKernel driver vfs fatfs
|
|
)
|