This commit is contained in:
Qiea
2024-11-09 23:12:32 +08:00
commit 77ddd25170
6 changed files with 43 additions and 0 deletions

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.26)
project(c_cnn C)
set(CMAKE_C_STANDARD 11)
include_directories(.)
add_executable(c_cnn
cnn.c
cnn.h
main.c)