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)
|