![]() |
$ git clone https://github.com/Osmanyasal/Recursion-Engine.git
$ cd ./Recursion-Engine
$ make run
[name]/ ├── [name]/ │ ├── headers... │ ├── sources... │ ├── modules... │ └── unit tests... └── tests/ ├── functional_test1/ ├── functional_test2/ ├── integration_test1/ ├── integration_test2/ └── ... src/ (source for the application) lib/ (source for the application library *.cpp *.hpp) doc/ (doxygen or any kind of documentation) src/utils/ |──foo |──foo.cc |──foo.test.cc └── ... src/core/ |──bar |──bar.cc |──bar.test.cc └── ... src/tests/ |──functional_test1 |──functional_test2 └── ...