Go to file
Nicolás Ortega Froysa 8924741937
Remove from the TODO
2018-04-13 08:02:55 +02:00
build First steps. 2018-03-25 12:08:19 +02:00
src Implement pause functionality. 2018-04-13 08:02:34 +02:00
.gitignore First steps. 2018-03-25 12:08:19 +02:00
CHANGELOG Added section of v0.3. 2018-03-25 15:46:46 +02:00
CMakeLists.txt Remove extra 5.0 stuff (fix later). 2018-04-13 08:01:53 +02:00
LICENSE Initial commit 2014-05-26 16:01:46 -05:00
README New install target. 2018-03-25 12:30:39 +02:00
TODO Remove from the TODO 2018-04-13 08:02:55 +02:00

README

====================
*** SpaceShipSim ***
====================
This is a small simulation program of a space ship (with infinite fuel) in a
frictionless environment (space). The idea is to use it for educational
purposes.

# Compiling
-----------
In order to build this program you will require the following dependencies:

 - GNU GCC (https://gcc.gnu.org/)
 - CMake (https://cmake.org/)
 - Allegro 5 (http://liballeg.org/)

You can then compile the program via the following commands:

  cd build/
  cmake ..
  make

This will create a release build with compiler optimizations. If you would like
a debug build then pass the `-DCMAKE_BUILD_TYPE=debug' flag to the `cmake'
command. If you would like to install then run `cmake' with the additional flag
`-DCMAKE_INSTALL_PREFIX=<install_dir>'. If you are installing as a user then
you may want to set the installation prefix to `/usr/local/', and if you're
packaging then please consult your distribution's policies. With this you
should be able to run the `make install' target and install the binary.

# Contributing
--------------
If you would like to contribute to the project, send a patch file to my e-mail
address: <nortega@themusicinnoise.net>.

# License
---------
As educational software, unless otherwise noted, all files are licensed under
the terms & conditions of the GNU General Public License version 3 or greater
(see `LICENSE' file for more information).