2023-08-15 15:00:19 +03:00
2023-08-15 14:51:20 +03:00
2023-08-15 14:51:20 +03:00
2023-08-15 15:00:19 +03:00
2021-12-04 12:48:21 +02:00
2022-12-04 13:36:49 +02:00
2021-12-07 21:12:49 +02:00
2023-08-13 11:46:19 +03:00
2021-12-05 17:16:54 +02:00
2021-12-05 17:16:54 +02:00
2021-12-04 12:48:21 +02:00
2021-12-04 12:48:21 +02:00

gameBase

Build guide

UNIX

  • git clone <gameBase_url>
  • cd gameBase
  • git submodule update --init --recursive
  • cmake -S . -B build
  • cd build
  • make

Windows

  • git clone <gameBase_url>
  • cd gameBase
  • git submodule update --init --recursive
  • cmake -S . -B build -G <present_visual_studio_version>
  • 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-<issue_number>-<short_description>
    • improvement label -> imp-<issue_number>-<short_description>
    • bugfix label -> bf-<issue_number>-<short_description>
  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
S
Description
No description provided
Readme
76 KiB
Languages
C++ 93.6%
CMake 6.4%