TODO: Add project description
To compile this project, ensure that you have the following requirements:
MinGW-w64SEH / MSVCRT (not SJLJ or UCRT !!) v13.1.0 or higherCmakeversion 3.21 or higher
First, you need to configure the cmake project using either your terminal or your IDE. But most importantly you need to set the following variable:
-DSFML_ROOT=<the absolute path to the SFML library folder>.
For example in vscode, you can add the following in .vscode/settings.json:
{
"cmake.configureArgs":
[
"-DSFML_ROOT=${workspaceFolder}/libraries/SFML-2.6.1"
]
}Or in CLion, you can add this option following these instructions.
Then, simply build the main target and the executable is ready to be launched.