Browse Source

Add freeimage as requirement

jklawreszuk 1 year ago
parent
commit
52ff6c1173
1 changed files with 17 additions and 5 deletions
  1. 17 5
      en/manual/platforms/linux/setup-and-requirements.md

+ 17 - 5
en/manual/platforms/linux/setup-and-requirements.md

@@ -85,18 +85,30 @@ sudo dnf install SDL2-devel
 sudo pacman -S sdl2
 sudo pacman -S sdl2
 ```
 ```
 
 
----
+## FreeImage
+
+FreeImage is battle-tested library for loading and saving popular image file formats like BMP, PNG, JPEG etc. The minimum required version is 3.18 and can be installed via:
+
 
 
-## .NET
+### [Debian / Ubuntu](#tab/freeimage-ubuntu)
 
 
-For information about how to install .NET, see the [.NET instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
+```bash
+sudo apt install libfreeimage-dev
+```
 
 
-We recommend to install .NET 8. To check which version you have installed, type:
+### [Fedora](#tab/freeimage-fedora)
 
 
+```bash
+sudo dnf install freeimage-devel
 ```
 ```
-dotnet --info
+
+### [Arch](#tab/freeimage-arch)
+
+```bash
+sudo pacman -S freeimage
 ```
 ```
 
 
+
 ## See also
 ## See also
 
 
 * [Create a Linux game](create-a-linux-game.md)
 * [Create a Linux game](create-a-linux-game.md)