This commit is contained in:
2025-04-30 15:48:50 +02:00
commit 4a0ca11c9a
11 changed files with 605 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 4.0)
project(candash C)
set(CMAKE_C_STANDARD 23)
add_executable(candash main.c
base.c
base.h)
target_link_libraries(candash m ncurses)