Thomas Kolb
f28de024d8
This framework provides the same animation interface as the ESP firmware, but sends commands to the ESP via UDP. Therefore animations can be tested without re-flashing the firmware for every tiny tuning change.
16 lines
324 B
CMake
16 lines
324 B
CMake
project(animation_test)
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(SOURCES
|
|
src/Fader.cpp
|
|
src/Animation/ImageScrollerAnimation.cpp
|
|
src/main.cpp
|
|
|
|
src/Animation/Animation.h
|
|
src/Fader.h
|
|
src/Animation/ImageScrollerAnimation.h
|
|
)
|
|
|
|
add_executable(animation_test ${SOURCES})
|
|
target_include_directories(animation_test PUBLIC src)
|