Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 661 Bytes

INSTALLATION.md

File metadata and controls

37 lines (19 loc) · 661 Bytes

Installation Guide

To build and run Ryza Code Editor, follow these steps:

Prerequisites

  • C++17 compiler (GCC, Clang, or MSVC)
  • CMake (version 3.10 or later)

Steps

  1. Clone the repository:

git clone https://github.com/yourusername/ryza.git cd ryza

  1. Create a build directory:

mkdir build cd build

  1. Run CMake to generate the build files:

cmake ..

  1. Build the project:

make

  1. After building, you can run the editor:

./ryza

Additional Notes

  • You can configure custom themes and icons in the resources/ directory.
  • For more details, refer to the CONTRIBUTING.md file.