From 19d45c30293aa7f9e9c17c390c9586a007143d94 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sun, 13 Aug 2023 12:33:43 +0300 Subject: [PATCH] README --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..03537b6 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# vb01 + +## Build guide + +### UNIX +- `git clone ` +- `cd vb01` +- `git submodule update --init --recursive` +- `cmake -S . -B build` +- `cd build` +- `make` + +### Windows +- `git clone ` +- `cd vb01` +- `git submodule update --init --recursive` +- `cmake -S . -B build -G ` +- open `build\ALL_BUILD.vcxproj` +- build the solution + +## Contrib guide +The Gitflow shall be used. + +1. create an issue, representing a change you wish to implement using one of these labels: + * `feature` + * `improvement` + * `bugfix` +2. create a branch off the `develop` branch, named using this scheme: + * `feature` label -> `ft--` + * `improvement` label -> `imp--` + * `bugfix` label -> `bf--` +3. create a PR with a short description of changes and evidence of the issue resolved, such as: + * reference to an automatic test(s) to run + * steps to manually verify the issue is resolved + * screenshots or screencasts +4. await the repo admin's approval