This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
c-net/CMakeLists.txt
2023-09-19 10:24:07 +02:00

6 lines
119 B
CMake

cmake_minimum_required(VERSION 3.22)
project(c_net C)
set(CMAKE_C_STANDARD 11)
add_executable(c_net main.c matrix.c)