45 lines
865 B
Markdown
45 lines
865 B
Markdown
# c-project-structure
|
|
|
|
Project description
|
|
|
|
Project image/gif
|
|
|
|
## Requirements
|
|
|
|
Requirements
|
|
|
|
## Installation
|
|
|
|
`make`
|
|
|
|
## Usage
|
|
|
|
`bin/run`
|
|
|
|
## Example
|
|
|
|
`bin/run`
|
|
|
|
## Documentation
|
|
|
|
Location of Documentation
|
|
|
|
## Directory structure
|
|
```
|
|
|-- Makefile <- Project makefile
|
|
|-- README <- Project README
|
|
|-- bin <- Compiled binaries
|
|
| `-- run <- Project main executable
|
|
|-- build <- Static objects and intermediate files
|
|
|-- data <- Project data
|
|
| |-- raw <- Raw data
|
|
| |-- interim <- Interm data
|
|
| |-- input <- Input data
|
|
| |-- output <- Output data
|
|
|-- docs <- Documentation
|
|
|-- include <- Header files
|
|
|-- lib <- Dynamic objects
|
|
|-- src <- Source files
|
|
`-- tests <- Unit tests
|
|
```
|