From 61846b2c5da262f5bd0e6acfd496163bdfbf9cce Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 4 Apr 2024 10:11:02 +0300 Subject: [PATCH] add build instructions --- wiki/build.adoc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 wiki/build.adoc diff --git a/wiki/build.adoc b/wiki/build.adoc new file mode 100644 index 0000000..c38ceaf --- /dev/null +++ b/wiki/build.adoc @@ -0,0 +1,31 @@ += build instructions + +== debian/ubuntu linux + +. configure dependency repos ++ +- `cppfw`: https://github.com/cppfw/wiki/blob/master/enable_repo/enable_repo_debian.adoc +- `llvm`: https://apt.llvm.org/ + +. install dependencies, see list of packages in `debian/control.in` -> `Build-Depends:` ++ +.... +sudo apt update +sudo apt install +.... + +. fetch git submodules ++ +.... +git submodule update --remote --init +.... + +. build the app +.... +make +.... + +. run the app +.... +make run-app +....