Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJarl Friis <jarl@softace.dk>2021-11-13 16:26:11 +0300
committerLukáš Matěna <33929324+lukasmatena@users.noreply.github.com>2021-11-23 11:48:16 +0300
commit5f95476a0c6bf4b6b2a0cf3259d91b0d93443116 (patch)
tree33127f14ab7a3b5acba9b49a8ac1377c08dbfbcc /doc
parent3cb6305d3ebab5f1fbfbe246eba8d2e9f8a77ca7 (diff)
Improve build instructions
Diffstat (limited to 'doc')
-rw-r--r--doc/How to build - Linux et al.md16
1 files changed, 14 insertions, 2 deletions
diff --git a/doc/How to build - Linux et al.md b/doc/How to build - Linux et al.md
index 9d193aef7..d0e3056f2 100644
--- a/doc/How to build - Linux et al.md
+++ b/doc/How to build - Linux et al.md
@@ -13,9 +13,21 @@ This guide describes building PrusaSlicer statically against dependencies pulled
#### 0. Prerequisities
-CMake, GNU build tools, git and m4 macro processor have to be installed. Unless that's already the case, install them as usual from your distribution packages. E.g. on Ubuntu, run `sudo apt-get install cmake build-essential git m4`. The names of the packages may be different on different distros.
+GNU build tools, CMake, git and other libraries have to be installed on the build machine.
+Unless that's already the case, install them as usual from your distribution packages.
+E.g. on Ubuntu 20.10, run
+```shell
+sudo apt-get install -y \
+git \
+build-essential \
+autoconf \
+cmake \
+libglu1-mesa-dev \
+libgtk-3-dev \
+libdbus-1-dev \
-Although most of dependencies are handled by the build script, PrusaSlicer still expects that some libraries will be available in the system (GTK, MESA, gettext). E.g., on Ubuntu, install the required packages by running `sudo apt-get install libgtk-3-dev libglu1-mesa-dev gettext`. The names of the packages may be different on different distros.
+```
+The names of the packages may be different on different distros.
#### 1. Cloning the repository