18 lines
366 B
CMake
18 lines
366 B
CMake
project(animation_test)
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(SOURCES
|
|
src/Fader.cpp
|
|
src/Animation/RgbwPsychedelicAnimation.cpp
|
|
src/fasttrigon.cpp
|
|
src/main.cpp
|
|
|
|
src/Animation/Animation.h
|
|
src/Fader.h
|
|
src/Animation/RgbwPsychedelicAnimation.h
|
|
src/fasttrigon.h
|
|
)
|
|
|
|
add_executable(animation_test ${SOURCES})
|
|
target_include_directories(animation_test PUBLIC src)
|