blob: e94db7f55f89b2179e9a62b5f3a46208d67e97ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[![Build Status](https://travis-ci.org/kompetenzbolzen/engine.svg?branch=master)](https://travis-ci.org/kompetenzbolzen/engine)
# Compiling
engine should compile just fine with just the c++ standard librarys.
Required Packages:
g++
make
this creates two folders in ./build/: lib and inc, wich hold the library and the headers respectively. these can then be copied into your projects directory.
# Using
Compile your program with linkerflags:
-L./lib -lengine -lstdc++
|