From 2ac11cb25ac36bcd0c8e86f69727f0035b2ebe87 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@fossgalaxy.com> Date: Mon, 19 Jul 2021 09:52:58 +0000 Subject: [PATCH] Add README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ebbe16b --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# FOSS Galaxy Game Library + +A library for building FOSS Games, Educational Resources and Academic Experiments. + +## Development Instructions + +### Building +It's designed to be a fairly standard cmake project, so the standard cmake steps should work: + +```bash +mkdir build +cd build +cmake .. +make +``` + +The library should also build the test scene (`demo`). There is a shellscript in the root of the +project that will build the project and run the demo project in gdb. + +Most of the dependencies should be downloaded automatically. If you're on X don't use glfw from the +Fedora repos, it won't work (it's configured for Wayland). The version the project builds should work. + +### Useful Tools +The following tools are helpful for development: + +* Valgrind (see the ways in which memory is messed up) +* RenderDoc (see what's being sent to the GPU) +* GDB (see what caused the crash this time) +* An Editor/IDE (I'm using neovim with a bit of clion) -- GitLab