Files
graphe/CMakeLists.txt
Tiago Batista Cardoso 3928bee6c6 splash
2026-02-24 17:50:39 +01:00

15 lines
254 B
CMake

cmake_minimum_required(VERSION 4.1)
project(graphe C)
set(CMAKE_C_STANDARD 23)
find_package(SDL2 REQUIRED)
add_executable(graphe main.c
structs.c
structs.h
render.h
render.c)
target_link_libraries(graphe SDL2::SDL2 m)