From 076cba69a4e45e69682484fb5352c964b9ec0e04 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Thu, 22 Feb 2024 23:14:59 -0800 Subject: [PATCH] readme info on template --- README.md | 45 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ae144f5..eeee6eb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,44 @@ # cmake-cmocka-template -A template for C and CPP programming that makes use of the cmocka unit testing framework in addition to the CMAKE build system. - -It's focused on wide compatibility with multiple systems and setup for vim usage. \ No newline at end of file +A template for C and CPP programming that makes use of the cmocka unit testing framework in addition to the CMAKE build system. + + +## Requirements + +## Resources + +## Contributions + + +## Directory Overview + +It's focused on wide compatibility with multiple systems and setup for vim usage.. +├── build +├── CMakeLists.txt +├── docs +├── inc +├── LICENSE +├── README.md +├── setup.sh +├── src +│   ├── CMakeLists.txt +│   └── main.c +├── tdd.sh +└── tests + └── CMakeLists.txt + +5 directories, 8 files + +## Scripts + +There are two scripts setup inside the project directory: + +**tdd.sh** +Uesd to preform the needed commands to build, test and debug the project. + + +**setup.sh** +Used to install the projects dependencies and automate needed setup. +Also removes example code when requested. + +