misc: merge updates

This commit is contained in:
nakst 2022-07-11 10:45:33 +01:00
parent 763d79b95d
commit 2191d611f7
3 changed files with 9 additions and 1 deletions

View File

@ -14,8 +14,12 @@ For discussion, join our Discord server: https://discord.gg/skeP9ZGDK8.
Alternatively, visit the forums (not very active): https://essence.handmade.network/forums.
## Supporters
To support development, you can donate to my Patreon: https://www.patreon.com/nakst.
Essence was a recipient of the prestigious 2021 Icculus Microgrant. You can view more details here: https://icculus.org/microgrant/.
## Testing
You can download and test the latest nightly build from https://github.com/nakst/build-essence/releases. Download and extract `Essence.tar.xz`. If you are using VirtualBox, import `Essence.ova`. If you are using Qemu, run

View File

@ -4,6 +4,10 @@
See `help/Source Map.md` for a description of the project structure and what each source file is for.
## Submitting patches
Please send a merge request on Gitlab here: https://gitlab.com/nakst/essence/-/merge_requests.
## Code Style
Functions and structures names use `PascalCase`.

View File

@ -1 +1 @@
cd "$(dirname "$0")" && mkdir -p bin && gcc -o bin/script util/script.c -g -Wall -Wextra -O2 -pthread -ldl && bin/script util/start.script options="`echo $@`"
cd "$(dirname "$0")" && mkdir -p bin && gcc -o bin/script util/script.c -g -Wall -Wextra -O2 -pthread -ldl -rdynamic && bin/script util/start.script options="`echo $@`"