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

14
.gitignore vendored Normal file
View File

@@ -0,0 +1,14 @@
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
.gitattributes
/cmake-build-debug
/.idea

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)

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# c-cnn
c-cnn

5
cnn.c Normal file
View File

@@ -0,0 +1,5 @@
//
// Created by Qi on 2024/11/9.
//
#include "cnn.h"

8
cnn.h Normal file
View File

@@ -0,0 +1,8 @@
//
// Created by Qi on 2024/11/9.
//
#ifndef C_CNN_CNN_H
#define C_CNN_CNN_H
#endif //C_CNN_CNN_H

3
main.c Normal file
View File

@@ -0,0 +1,3 @@
//
// Created by Qi on 2024/11/9.
//