Updated readme file

This commit is contained in:
OmniaX-Dev 2024-09-08 06:38:46 +02:00
parent 6a93250fe7
commit 76cfbf9341

View file

@ -12,29 +12,31 @@ download MSYS2 from https://www.msys2.org/ and install it
run MSYS2, and in the terminal run:
```
pacman -Syuu
pacman -S --needed base-devel mingw-w64-ucrt-x86_64-clang mingw-w64-ucrt-x86_64-gdb mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-make mingw-w64-ucrt-x86_64-boost mingw-w64-ucrt-x86_64-SDL2 mingw-w64-ucrt-x86_64-SDL2_mixer mingw-w64-ucrt-x86_64-SDL2_image mingw-w64-ucrt-x86_64-SDL2_ttf mingw-w64-ucrt-x86_64-SDL2_gfx
pacman -S --needed base-devel mingw-w64-ucrt-x86_64-clang mingw-w64-ucrt-x86_64-gdb mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-make mingw-w64-ucrt-x86_64-boost mingw-w64-ucrt-x86_64-SDL2 mingw-w64-ucrt-x86_64-SDL2_mixer mingw-w64-ucrt-x86_64-SDL2_image mingw-w64-ucrt-x86_64-SDL2_ttf mingw-w64-ucrt-x86_64-SDL2_gfx mingw-w64-ucrt-x86_64-openssl
```
**Step 3:**
open a UCRT64/MSYS2 command prompt inside the root directory of the project
**Step 4:**
execute this command:
execute theese two commands:
```
./compile
./install
```
## Build instructions - Linux (Arch)
**Step 1:**
open a terminal and run:
```
sudo pacman -Syuu
sudo pacman -S --needed base-devel clang gdb cmake make boost sdl2 sdl2_mixer sdl2_image sdl2_ttf sdl2_gfx
sudo pacman -S --needed base-devel clang openssl gdb cmake make boost sdl2 sdl2_mixer sdl2_image sdl2_ttf sdl2_gfx
```
**Step 2:**
open a terminal inside the root directory of the project and run this command:
open a terminal inside the root directory of the project and run theese two commands:
```
./compile
./install
```
## Build instructions - Linux (Ubuntu)
@ -46,9 +48,10 @@ sudo apt install clang gdb make cmake libboost-all-dev libsdl2-dev libsdl2-mixer
```
**Step 2:**
open a terminal inside the root directory of the project and run this command:
open a terminal inside the root directory of the project and run theese two commands:
```
./compile
./install
```
## Build instructions - Linux (Fedora)
@ -60,9 +63,10 @@ sudo dnf install gcc gcc-c++ make clang gdb cmake clang-tools-extra boost boost-
```
**Step 2:**
open a terminal inside the root directory of the project and run this command:
open a terminal inside the root directory of the project and run theese two commands:
```
./compile
./install
```
#### For other Linux distros, install the dependencies using your package manager.