Skip to content

v2.2.0

Choose a tag to compare

@github-actions github-actions released this 02 Sep 09:14
· 19 commits to main since this release
c08ad0a

Storm Engine v2 — v2.2.0

Installation

Debian / Ubuntu / Linux Mint (amd64)

sudo apt install ./libstormenginev2_2.2.0_amd64.deb

Raspberry Pi 4/5 with 64-bit OS (arm64)

sudo apt install ./libstormenginev2_2.2.0_arm64.deb

apt, not dpkg -i: dpkg does not install dependencies, so on a
machine without the SDL2 runtime it stops with a dependency error.
The leading ./ is required. If dpkg -i already left it
half-installed, sudo apt-get install -f finishes it.

After installing, link with -lstormenginev2.

Windows (x64, MinGW-w64)

Download stormengine2-2.2.0-win64.zip
and unzip it. It carries the DLLs, the import library, and the
SDL2, glm and tinyxml2 headers the engine's own headers need —
Windows has no package manager to fetch those from.

g++ -std=c++17 mygame.cpp -Iinclude -Llib -lstormenginev2 -o mygame.exe

Then put the contents of bin\\ beside your .exe. MSVC is not
supported: the import library and C++ ABI are GCC's. See the
README.txt inside the zip.