esp32-sk6812/animation_test/CMakeLists.txt
Thomas Kolb f28de024d8 Added animation test framework
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.
2019-12-24 17:32:15 +01:00

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)