Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.03 KB

README.md

File metadata and controls

45 lines (30 loc) · 1.03 KB

Match 3 in a row

Nameless clone of a very popular group of games.

Play at itch.io.

Gameplay

Currently in development.

Building

Dependencies:

  • C++17 compatible compiler (g++ is set in makefile)
  • libSDL2

Linux

$ git clone https://github.com/AstralShadow/match_3.git
$ cd match_3
$ make -j$(nproc)
$ make run

Web (Emscripten)

Install and prepare the Emscripten SDK. Use make with makefile_ems to compile the game.

$ git clone https://github.com/AstralShadow/match_3.git
$ cd match_3
$ make -j ${nrpoc} -f makefile_ems

Host bin_ems and open index.html in browser.

$ cd bin_ems
$ python -m http.server

Windows and other

The game should work on any system supported by SDL2. If that's not the case, open an issue or a pull request.

To compile the game you will have to Setup SDL and add all .cpp files in src/ to your IDE of choice.