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-24 11:54:55 +02:00

7 lines
217 B
CMake

cmake_minimum_required(VERSION 3.22)
project(c_net C)
set(CMAKE_C_STANDARD 11)
add_executable(c_net main.c matrix/matrix.c image/image.c neuronal_network.c util.c matrix/operations.c)
target_link_libraries(c_net m)