Skip to content

v2.1.1

Choose a tag to compare

@github-actions github-actions released this 01 Sep 22:17
· 30 commits to main since this release
v2.1.1
1387a9b

Storm Engine v2 — v2.1.1

Installation

Debian / Ubuntu / Linux Mint (amd64)

sudo dpkg -i libstormenginev2_2.1.1_amd64.deb

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

sudo dpkg -i libstormenginev2_2.1.1_arm64.deb

After installing, link with -lstormenginev2.

Windows (x64, MinGW-w64)

Download stormengine2-2.1.1-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.