Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Liu committed Dec 3, 2023
1 parent 1e83f94 commit e2b4b64
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 37 deletions.
31 changes: 31 additions & 0 deletions doc/basicStructure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# WorkSpace Structure

```shell
.
├── CMakeLists.txt # Root CMakeLists.txt
├── LICENSE
├── README.md # This file
├── apps # Application folder
│ ├── CMakeLists.txt # Application CMakeLists.txt
│ ├── inc # Application include folder
│ │ └── lib_calc.h # Application include file
│ ├── main.c # Application main file
│ ├── scripts # Application scripts folder
│ │ ├── helper.py # Application helper script
│ │ ├── killExes.bat # Application killExes script
│ │ └── killExes.sh # Application killExes script
│ ├── src # Application source folder
│ │ ├── CMakeLists.txt # Application source CMakeLists.txt
│ │ └── lib_calc.c # Application source file
│ └── test # Application test folder
│ ├── CMakeLists.txt # Application test CMakeLists.txt
│ └── test_lib_calc.cc # Application test file
├── doc # Documentation folder
│ └── basicStructure.md # Basic folder structure
└── output # Output folder
├── exe # Output executable folder
│ ├── main # Output main executable folder
│ └── test # Output test executable folder
└── lib # Output library folder
└── libcalc.a # Output library file
```
37 changes: 0 additions & 37 deletions doc/basicStructure.txt

This file was deleted.

0 comments on commit e2b4b64

Please sign in to comment.