Updated readme file

This commit is contained in:
OmniaX-Dev 2024-09-08 06:39:10 +02:00
parent 2f19ddc459
commit e5f1a62724
3 changed files with 22 additions and 2 deletions

11
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"aramok.aramoks-black",
"ms-vscode.cpptools",
"ms-vscode.hexeditor",
"PKief.material-icon-theme",
"wayou.vscode-todo-highlight",
"josetr.cmake-language-support-vscode"
]
}

View file

@ -14,7 +14,7 @@ download MSYS2 from https://www.msys2.org/ and install it
run MSYS2, and in the terminal run: run MSYS2, and in the terminal run:
``` ```
pacman -Syuu 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-SDL2 mingw-w64-ucrt-x86_64-SDL2_mixer mingw-w64-ucrt-x86_64-SDL2_image 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:** **Step 3:**
@ -30,7 +30,7 @@ execute this command:
open a terminal and run: open a terminal and run:
``` ```
sudo pacman -Syuu sudo pacman -Syuu
sudo pacman -S --needed base-devel clang gdb cmake make sdl2 sdl2_mixer sdl2_image sudo pacman -S --needed base-devel clang openssl gdb cmake make boost sdl2 sdl2_mixer sdl2_image sdl2_ttf sdl2_gfx
``` ```
**Step 2:** **Step 2:**
@ -52,4 +52,12 @@ open a terminal inside the root directory of the project and run this command:
./compile ./compile
``` ```
## Build instructions - Linux (Fedora)
**Step 1:**
open a terminal and run:
```
sudo dnf update
sudo dnf install gcc gcc-c++ make clang gdb cmake clang-tools-extra boost boost-devel openssl openssl-devel SDL2 SDL2_image SDL2_mixer SDL2_ttf SDL2_gfx SDL2-devel SDL2_image-devel SDL2_mixer-devel SDL2_ttf-devel SDL2_gfx-devel
```
#### For other Linux distros, install the dependencies using your package manager. #### For other Linux distros, install the dependencies using your package manager.

View file

@ -9,6 +9,7 @@ Refactor:
External: External:
Redo script to create windows Release Redo script to create windows Release
Update Ubuntu install instructions in readme file (for OmniaFramework aswell)