init
This commit is contained in:
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal 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
11
CMakeLists.txt
Normal 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)
|
||||||
8
cnn.h
Normal file
8
cnn.h
Normal 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
|
||||||
Reference in New Issue
Block a user