mirror of
https://github.com/sloven-c/calculator.git
synced 2025-10-30 12:27:25 +01:00
11 lines
208 B
CMake
11 lines
208 B
CMake
cmake_minimum_required(VERSION 4.0)
|
|
project(calculator C)
|
|
|
|
set(CMAKE_C_STANDARD 23)
|
|
|
|
add_executable(calculator main.c
|
|
structures.h
|
|
stack.c
|
|
stack.h
|
|
)
|
|
target_link_libraries(calculator m) |