a75279c96c
* New Apps - Lot 1 Trying to mix it up a little with some fun, useful and just weird. Adds more new apps... Brainfuck Breakout Magic 8 Ball Todo List Also re-organised the app name part of main.yml * Fix build? * fixes * and some more * Update Brainfuck.cpp * i heard you like fixes with your fixes * no hard coded paths
17 lines
517 B
CMake
17 lines
517 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(TodoList)
|
|
tactility_project(TodoList)
|