8 lines
129 B
CMake
8 lines
129 B
CMake
cmake_minimum_required(VERSION 4.1)
|
|
project(graphe C)
|
|
|
|
set(CMAKE_C_STANDARD 23)
|
|
|
|
add_executable(graphe main.c
|
|
structs.h)
|