The Game Engine  1
Installation

Installation:

Linux:

Arch: Install the following packages:

  • cmake
  • mesa
  • SDL
  • SDL_ttf
  • SDL_image

Ubuntu: Since some things don't work with apt-get you can run this script: mkdir sdl-temporary && cd sdl-temporary && wget game.iturtleman.us/sdl-install.sh && chmod +x sdl-install.sh && sudo ./sdl-install.sh

The SDL library is now compiled and installed on your system.

Windows:

Mac:

Building:

Linux:

  • mkdir bin
  • cd bin
  • cmake ..
  • make

Windows:

  • open game.vcxproj with visual studio
  • press F6 or Build>Build

Mac:

  • mkdir bin
  • cd bin
  • cmake ..
  • make

Running:

Linux:

  • cd bin
  • ./game or from game dir bin/game

Windows:

  • open game.vcxproj with visual studio
  • press F6 or Build>Build

Mac:

  • cd bin
  • ./game or from game dir bin/game