From 4d1a4cfca9339a203a5f88d7179ed429c7e43396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Thu, 25 Oct 2018 15:46:52 +0200 Subject: [PATCH] Added basic files. --- .gitignore | 6 ++++++ README | 23 +++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 README diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..939676e --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Ignore build files +build/ +!build/.keep + +# Ignore Vim temporary files +*.sw[a-z] diff --git a/README b/README new file mode 100644 index 0000000..d1a0fdd --- /dev/null +++ b/README @@ -0,0 +1,23 @@ +------------------- +*** Trippy Cube *** +------------------- +A psychedelic cube that continuously changes colors and rotates. + +# Compiling +----------- +To compile you'll require the following dependencies: + - SDL2 + - OpenGL 3+ (hardware dependent) + - C++11 Compiler (GCC recommended) + +To compile the project, run the following commands in the root directory: + + cd build/ + cmake .. + make + +This will build a release build of the project. + +# License +--------- +This being a toy project, it is licensed under the ZLib license.