* initial changes for waveshare s3 touch support * fix lvgl locking * fix for lvgl locking * cleaned up dependencies * boards now depend on tactility instead of tactility-esp * revert deletion * remove component * working touch&display driver * added waveshare to github actions * cleanup * fix for driver * fix for sim build * build fixes * updated docs * updated docs * attempt new sdl2 github action * revert * fixes for clion/cmdline build environment wasn't parsed properly * temporarily disable pc sim build
23 lines
690 B
CMake
23 lines
690 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
set(BOARD_COMPONENTS esp_wifi)
|
|
|
|
idf_component_register(
|
|
SRC_DIRS "src"
|
|
"src/apps/system/wifi_connect"
|
|
"src/apps/system/wifi_manage"
|
|
"src/services/wifi"
|
|
INCLUDE_DIRS "src/"
|
|
REQUIRES esp_wifi nvs_flash spiffs
|
|
)
|
|
|
|
set(ASSETS_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/assets")
|
|
spiffs_create_partition_image(assets ${ASSETS_SRC_DIR} FLASH_IN_PROJECT)
|
|
|
|
set(CONFIG_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/config")
|
|
spiffs_create_partition_image(config ${CONFIG_SRC_DIR} FLASH_IN_PROJECT)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} ${IDF_TARGET_NAME} tactility)
|
|
target_link_libraries(${COMPONENT_LIB} ${IDF_TARGET_NAME} tactility-core)
|
|
|