18 lines
587 B
CMake
18 lines
587 B
CMake
file(GLOB_RECURSE SOURCE_FILES
|
|
Source/*.c*
|
|
# Library source files must be included directly,
|
|
# because all regular dependencies get stripped by elf_loader's cmake script
|
|
../../../Libraries/Str/Source/*.c**
|
|
../../../Libraries/TactilityCpp/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/Str/Include
|
|
INCLUDE_DIRS ../../../Libraries/TactilityCpp/Include
|
|
REQUIRES TactilitySDK
|
|
)
|
|
|