Skip to content

Building from source

Mike R edited this page Feb 21, 2022 · 5 revisions

Building on linux

Build instructions sutitable for Ubuntu-based distros > 20.04

  1. Clone repository with submodules
 git clone --recursive git@github.com:Midgrad/Dreka.git  
  1. Go to the project folder
cd Dreka
  1. Install system dependencies with script
./scripts/ubuntu_install_deps.sh

Tip: You can use Qt installed from Qt Online Installer

  1. Install web dependencies with node.js
npm install
  1. Build the project
npm run configure
npm run build
  1. Run it!
npm run start_release

Alternativly you can use Qt Creator IDE opening root CMakeLists.txt or VsCode/Atom/CLion/etc opening folder.

Clone this wiki locally