Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MattRyder committed Jan 20, 2018
1 parent d378915 commit 6f5a6b0
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
@@ -1,6 +1,9 @@
# GibEngine # GibEngine
----------------------- -----------------------
A 3D game engine
A 3D game engine, and associated world editor. Builds available for Windows, Ubuntu Linux.

![GibEditor Screenshot](https://i.imgur.com/2rxN2Ti.jpg)


| Windows | Linux | Codacy Grade | | Windows | Linux | Codacy Grade |
| :------ | :---- | :----------- | | :------ | :---- | :----------- |
Expand All @@ -9,12 +12,24 @@ A 3D game engine
# Requirements # Requirements
* cmake > 3.1 * cmake > 3.1
* C++11 compatible compiler * C++11 compatible compiler
* OpenGL 4.0 or OpenGL ES 3.0 compatible GPU


# Build # Build Instructions

## GNU/Linux
``` bash ``` bash
git clone https://github.com/MattRyder/GibEngine.git git clone https://github.com/MattRyder/GibEngine.git
mkdir build mkdir build
cd build cd build
cmake .. cmake ..
make make
```

## Windows, MSVC
``` bash
git clone https://github.com/MattRyder/GibEngine.git
mkdir build
cd build
cmake -G "Visual Studio 14 2015 Win64" ..
# Open GibEngine.sln within the `build` directory
``` ```

0 comments on commit 6f5a6b0

Please sign in to comment.