Developing the app isnt easy, here is some stuff you should read first.
Building the application is as simple as running:
$ chmod +x scripts/build.sh
$ ./scripts/build.sh platform
Where platform is one of windows
or linux
, based on your os.
It is important that you adhere to our code style. This makes it easier for us to debug, code, and solve problems.
Only format the items in the includes
and src
directories. We use two-space tabs, so set your editor accordingly.
We have a Clang Format config file that defines our style preferences.
Our preferred way of running clang-format
is as so:
$ clang-format -i src/* includes/*