Files
Shutter/CMakeLists.txt
Derisis13 b82fb898e9 Version 1.5.1
Added dynamic memory management for shutters (functions in shutter.c).
Code is now much easier to tailor to specific needs and works better in the limited RAM of routers.
Memory leaks were not found by Valgrind Memcheck.
2021-09-19 12:01:49 +02:00

10 lines
230 B
CMake
Executable File

cmake_minimum_required(VERSION 3.19)
project(redony C)
set(CMAKE_C_STANDARD 99)
add_executable(redony main.c timing.c timing.h
# moving.c moving.h
shutter.h
moving_debug.c moving_debug.h
shutter.c)