v2.1.1
Storm Engine v2 — v2.1.1
Installation
Debian / Ubuntu / Linux Mint (amd64)
sudo dpkg -i libstormenginev2_2.1.1_amd64.debRaspberry Pi 4/5 with 64-bit OS (arm64)
sudo dpkg -i libstormenginev2_2.1.1_arm64.debAfter 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.