diff --git a/README.md b/README.md index d515e07..f22676a 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,12 @@ CastleTour This repo is a combination of a few Irrlicht tutorials. ### Compiling -The [Makefile](/Makefile) for this project is so far only for Debian Linux (it's all I can test it on). Please make sure you have all the necessary libraries, make sure that Irrlicht is in your _LD Path_, and also make sure you have the __clang++ compiler__ installed. Then, simply run the following: +This project uses [CMake](http://www.cmake.org/) and has only been tested on a 32-bit Linux computer. To compile this code install Irrlicht (from the repos) and all other necessary libraries (such as OpenGL) and run the following commands: ```bash +$ cmake . $ make ``` -The binary should be in the ```bin``` directory. - -### Contributing -Feel free to add. This is something I'm using to learn Irrlicht, and it would help if I had a better [Makefile](/Makefile) file that could compile on multiple platforms. +This should compile the code and you should find a binary in a directory called `bin`. You should be able to run this project from there. ### License Since this really isn't my code but a combination of multiple Irrlicht tutorials, I have licensed this project under the [Unlicense](/LICENSE), because it's kind of like a tutorial.