Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sunxfancy/gtk2048
- Owner: sunxfancy
- License: mit
- Created: 2015-05-28T03:17:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-27T01:50:04.000Z (almost 9 years ago)
- Last Synced: 2023-08-08T03:12:49.948Z (over 1 year ago)
- Language: C++
- Size: 16.6 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```