-
Required packages and libraries
- C++ compiler that supports c++20 standard
CMake
: Cross-platform software tool for managing the build process of software using a compiler-independent method.
Make sure to download the version3.15
or higher.libsdl2-dev
: Simple DirectMedia Layer development fileslibsdl2-image-dev
: Image loading library for Simple DirectMedia Layerlibsdl2-ttf-dev
: Font library for Simple DirectMedia Layer
-
On Linux you can use
clang
orgcc
compiler.-
$ apt install libclang-dev clang
or$ apt install g++
$ apt install cmake
$ apt install libsdl2-dev
$ apt install libsdl2-image-dev
$ apt install libsdl2-ttf-dev
-