wtfsystems / wtengine

:video_game: C++ Game Engine

Home Page:https://www.wtfsystems.net/docs/wtengine/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What the Engine?

WIP Undergoing some work, changing the engine to a full header implementation. May have issues building.

WTEngine is a lightweight cross-platform game engine written in C++17 using an ECS design.

Requirements

Documentation:


Library Installation

Build and installation is handled by CMake. To build just the library:

git clone https://github.com/wtfsystems/wtengine.git
cd wtengine
cmake .
make

Then to install the library run:

sudo make install

Troubleshooting

pkg-config can't find wtengine

Make sure the install location used for pkg-config is in PKG_CONFIG_PATH, example:

export PKG_CONFIG_PATH=/usr/local/share/pkgconfig

Check install_manifest.txt to see where wtengine.pc was placed.

You can verify pkg-config can locate the engine by:

pkg-config --libs --exists wtengine 

About

:video_game: C++ Game Engine

https://www.wtfsystems.net/docs/wtengine/index.html

License:MIT License


Languages

Language:C++ 98.7%Language:CMake 1.3%