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
11 lines
443 B
CMake
11 lines
443 B
CMake
file(GLOB_RECURSE SOURCE_FILES Source/*.c*)
|
|
file(GLOB_RECURSE SFX_ENGINE_FILES ../../../Libraries/SfxEngine/Source/*.c*)
|
|
|
|
idf_component_register(
|
|
SRCS ${SOURCE_FILES} ${SFX_ENGINE_FILES}
|
|
# Library headers must be included directly,
|
|
# because all regular dependencies get stripped by elf_loader's cmake script
|
|
INCLUDE_DIRS ../../../Libraries/TactilityCpp/Include ../../../Libraries/SfxEngine/Include
|
|
REQUIRES TactilitySDK
|
|
)
|