dbf850c434
- M5 Unit Modules library + M5 Unit Test app - Minor fixes for TodoList, TwoEleven, Snake, Brainfuck and Breakout - Fixed SerialConsole to use the uart controller as it was broken in one of the many updates - Fixed keyboard input in TwoEleven, Breakout, Magic8Ball and Snake - Bluetooth Media Keys app, supports pressing physical keys to trigger the corresponding buttonmatrix button - Epub Reader app
17 lines
521 B
CMake
17 lines
521 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(M5UnitTest)
|
|
tactility_project(M5UnitTest)
|