-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chong Liu
committed
Dec 3, 2023
1 parent
1e83f94
commit e2b4b64
Showing
2 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file was deleted.
Oops, something went wrong.