-
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Asher Winstead edited this page Oct 7, 2024
·
4 revisions
to get started with Safron, clone the repository to your local machine:
git clone https://github.com/MrAshCreates/Safron.git
- Operating System: Unix-like systems (Linux, macOS)
- Compiler: C++20 compatible compiler (e.g., GCC 9+, Clang 10+)
- Tools: CMake 3.10 or higher
- Libraries: cURL library
- Navigate to the cloned repository:
cd Safron
- Create a build directory and navigate into it:
mkdir build && cd build
- Configure the project using CMake:
cmake ..
- Build the project:
make
After building, you can install Safron using:
sudo make install
Alternatively you can run this...
cd Safron
mkdir build && cd build
cmake ..
make && sudo make install