Shunya Interfaces uses Cmake as it build engine, you can follow these steps to compile and install the library from scratch. **Note**: These steps are for native compile (i.e Run these commands on Shunya OS). Currently, We do not have instructions for cross-compilation (i.e Compiling on your laptop) of the library. ### Step 1: Clone the project ```sh # Clone the project, Skip if you have cloned the project. git clone https://github.com/shunyaos/shunyainterfaces.git cd shunyainterfaces ``` ### Step 2: Configure and Build ```sh # Create a build directory mkdir build cd build # Configure cmake ../ # Build make ``` ### Step 3: Install Shunya Interfaces ```sh # Install Shunya Interfaces sudo make install ```