- `DisplayDevice` improvements related `DisplayDriver` - Replaced incorrect usage of `spiBusHandle` with `spiHostDevice` in all SPI display devices - Disabled `DisplayDriver` support for RGB displays for now - Updated `GraphicsDemo` project for the above changes - TactilityC improvements: - created `tt_hal_device_find()` - created `tt_hal_display_*` - created `tt_hal_touch_*` - created `tt_lvgl_*` - export `tt_app_*` calls
17 lines
525 B
CMake
17 lines
525 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
if (DEFINED ENV{TACTILITY_SDK_PATH})
|
|
set(TACTILITY_SDK_PATH $ENV{TACTILITY_SDK_PATH})
|
|
else()
|
|
set(TACTILITY_SDK_PATH "../../release/TactilitySDK")
|
|
message(WARNING "⚠️ TACTILITY_SDK_PATH environment variable is not set, defaulting to ${TACTILITY_SDK_PATH}")
|
|
endif()
|
|
|
|
include("${TACTILITY_SDK_PATH}/TactilitySDK.cmake")
|
|
set(EXTRA_COMPONENT_DIRS ${TACTILITY_SDK_PATH})
|
|
|
|
project(GraphicsDemo)
|
|
tactility_project(GraphicsDemo)
|