My Generic Framework
Find a file
2023-12-30 17:05:31 +01:00
.vscode Added ConsoleRicuhString functionality, and custom text styling language 2023-12-02 01:45:43 +01:00
extra [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
licences Removed <ogfx> target and code 2023-12-27 21:25:09 +01:00
Release [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
src [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
.gitignore [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
build.nr [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
CMakeLists.txt [0.1.1807] - New ostd::String class + refactor 2023-12-30 17:05:31 +01:00
compile Better build script 2023-12-28 01:33:40 +01:00
README.md Better README and new build number system 2023-12-27 23:23:51 +01:00
temp_install.sh Better build script 2023-12-28 01:33:40 +01:00

OmniaFramework

A collection of C++ classes and tools that I have created over the years

Build instructions - Windows

Step 1: download MSYS2 from https://www.msys2.org/ and install it

Step 2: 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

Step 3: open a UCRT64/MSYS2 command prompt inside the root directory of the project

Step 4: execute this command:

./compile

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

Step 2: open a terminal inside the root directory of the project and run this command:

./compile

Build instructions - Linux (Ubuntu)

Step 1: open a terminal and run:

sudo apt update && sudo apt upgrade
sudo apt install clang gdb make cmake libboost-all-dev

Step 2: open a terminal inside the root directory of the project and run this command:

./compile

For other Linux distros, install the dependencies using your package manager.