2019-12-24 17:32:15 +01:00
|
|
|
project(animation_test)
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
src/Fader.cpp
|
2021-08-23 21:22:56 +02:00
|
|
|
src/Animation/RgbwPsychedelicAnimation.cpp
|
|
|
|
src/fasttrigon.cpp
|
2019-12-24 17:32:15 +01:00
|
|
|
src/main.cpp
|
|
|
|
|
|
|
|
src/Animation/Animation.h
|
|
|
|
src/Fader.h
|
2021-08-23 21:22:56 +02:00
|
|
|
src/Animation/RgbwPsychedelicAnimation.h
|
|
|
|
src/fasttrigon.h
|
2019-12-24 17:32:15 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(animation_test ${SOURCES})
|
|
|
|
target_include_directories(animation_test PUBLIC src)
|