Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sunxfancy/gtk2048

It's a 2048 game write in gtkmm
https://github.com/sunxfancy/gtk2048

Last synced: 19 days ago
JSON representation

It's a 2048 game write in gtkmm

Awesome Lists containing this project

README

        

# Gtk2048
It's a 2048 game write in gtkmm.

![](2048.png)

## build

We used cmake to build the project, please check the gtkmm-3.0 installed first.

In Ubuntu, use apt-get to install it:
```
sudo apt-get install cmake libgtkmm-3.0-dev
```

Then, build the project.

```
mkdir build
cd build
cmake ..
make
```

## doxygen doc

It's used Doxygen to build the document.

```
cd build
make doc
```