Skip to content

Build from source code

Artem Vlasenko edited this page Mar 19, 2026 · 9 revisions

Dependencies

Arch/Manjaro

sudo pacman -S base-devel cmake

Ubuntu:

sudo apt install build-essential cmake qtbase5-dev libqt5svg5-dev

Build

  • Download the source code with submodules:

    git clone --recursive https://github.com/artemvlas/veretino
    
  • Or using SSH

    git clone --recursive git@github.com:artemvlas/veretino.git
    
  • execute scripts/make_install.sh

  • Or do it yourself:

    mkdir build
    cd build
    cmake .. -DCMAKE_BUILD_TYPE=Release
    make -j$(nproc)
    
    [optional] sudo make install
    

Clone this wiki locally