Tactility/main/CMakeLists.txt
Ken Van Hoeylandt 28bd80c1f1
Rename project to tactility (#7)
* wifi wip

* renamed project to Tactility

* renamed code files and defines

* changed prefixes to tt_

* removed wifi wip code
2024-01-06 12:24:38 +01:00

17 lines
360 B
CMake

set(project_components tactility)
if("${IDF_TARGET}" STREQUAL "esp32")
list(APPEND project_components yellow_board)
endif()
# T-Deck is an S3 platform
if("${IDF_TARGET}" STREQUAL "esp32s3")
list(APPEND project_components lilygo_tdeck)
endif()
idf_component_register(
SRC_DIRS "src"
"src/hello_world"
REQUIRES ${project_components}
)