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
jastornig 1a9f66f960 Merge branch 'Development' into 'Temp'
# Conflicts:
#   CMakeLists.txt
#   image.c
2023-09-19 11:13:44 +00:00

7 lines
158 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)
target_link_libraries(c_net m)