10 lines
184 B
CMake
10 lines
184 B
CMake
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) |