Skip to content

TransNeptunianStudios/Triangulum

Repository files navigation

A top down scrolling space action game! Asteroids, lasers, bosses, cool music and explosions. A classic space shooter that wants to be the next R-type!

Screenshot

Dependencies

  • SFML 2.1
  • EntityX (latest)
  • yaml-cpp (0.3.0)

Prepare to build

Building

  • git clone
  • cd Triangulum
  • mkdir build
  • cd build
  • cmake .. && make

Building for Windows with MinGW

  • Download latest MinGW from http://www.mingw.org/
  • Install mingw32-base, mingw32-gcc-g++
  • Download EntityX
  • cd EntityX
  • mkdir build
  • cmake .. -G "MinGW Makefiles"
  • mingw32-make
  • Download yaml-cpp
  • cd yaml-cpp
  • mkdir build
  • cmake .. -G "MinGW Makefiles"
  • mingw32-make
  • Download SFML (GCC 4.7 MinGW (DW2) - 32 bits)
  • Download external library dependencies for SFML https://github.com/LaurentGomila/SFML/tree/master/extlibs/libs-mingw/x86 (put in SFML/lib)
  • clone Triangulum
  • mkdir build
  • cd build
  • cmake .. -G "MinGW Makefiles" -DENTITYX_ROOT="" -DYAMLCPP_DIR="" -DSFML_ROOT=""

Other esources, current, future and potential