commit 4d1a4cfca9339a203a5f88d7179ed429c7e43396 Author: Nicolás Ortega Froysa Date: Thu Oct 25 15:46:52 2018 +0200 Added basic files. 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.