aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 96a0ad707f66b7c4ff3eb4136df5416a2c6a8afb (plain)
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
34
35
36
37
38
39
40
YAGE
====

Introduction
------------

YAGE stands for Yet Another Game Engine. It is a game engine that I am
developing for a game called [Arider](https://github.com/ymherklotz/Arider).
It uses OpenGL and SDL2 for the window creation and management and graphics.

Installation and usage
----------------------

To use YAGE for your own game, you should link it as a static library and
include the [yage.hpp](/include/YAGE/yage.hpp) header in your project.

Build and Testing
-----------------

To compile YAGE, create a build directory from the base directory. Then call
cmake and point it to the directory containing.
[CMakeLists.txt](/CMakeLists.txt).

``` shell
mkdir build
cd build
cmake ..
```

You can then run google test on YAGE.

``` shell
ctest
```

License
-------

Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License,
see file [LICENSE](/LICENSE) for more details.