1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
explosive-c4
============
Connect4 clone
Gameplay
--------
[Youtube video](https://www.youtube.com/watch?v=oBcFPTqldt8)
Install
-------
Available on Debian, otherwise build from sources.
Build
=====
Install the build requirements listed in `debian/control`.
Adapt the package names to whatever they might be on your distribution.
```bash
mkdir build; cd build; qmake ../src; make -j
# To execute
./explosive-c4
# Or you can do
sudo make install
```
|