Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uspgamedev/circuit-of-mana-ugdk
UGDK-version prototype of Circuit of Mana
https://github.com/uspgamedev/circuit-of-mana-ugdk
Last synced: about 1 month ago
JSON representation
UGDK-version prototype of Circuit of Mana
- Host: GitHub
- URL: https://github.com/uspgamedev/circuit-of-mana-ugdk
- Owner: uspgamedev
- License: zlib
- Created: 2014-08-06T20:20:31.000Z (over 10 years ago)
- Default Branch: dev
- Last Pushed: 2014-09-29T21:27:25.000Z (over 10 years ago)
- Last Synced: 2023-03-22T19:06:32.685Z (almost 2 years ago)
- Language: C++
- Size: 406 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Circuit of Mana (for UGDK)
==========================This is a prototype of our Circuit of Mana project using UGDK.
How to Compile
--------------### On Linux
You need the following packages:
```
cmake >= 2.8.11
git >= 1.7.10
```After cloning this repository, go inside its root directory and use the commands:
```bash
$ mkdir build
$ cd build
$ cmake ..
$ make
```It generates an executable for each POV version of the prototype:
```
src/platformer/circuit-of-mana-platformer
```### On Windows
You will need the following software:
```
CMake 2.8.11 (or higher)
Visual Studio 2013 (or newer)
```After cloning this repository, run the cmake-gui utlity, point the "Where is the source code"
to the repository root and the "Where to build the binaries" to any directory you wish.
Recommended is a directory named "build".Then, press "Configure" and choose "Visual Studio 12 2013" (optionally Win64) and then "Generate".
With that done, there should be a Visual Studio solution in the binary directory.