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 20:32:19 +02:00

7 lines
177 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 image.c neuronal_network.c)
target_link_libraries(c_net m)