Add make to the Docker image

master
Jos van den Oever 2018-02-07 12:31:21 +01:00
parent 36f9287372
commit 16f642ddc6
2 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@ RUN apt-get update && apt-get dist-upgrade -y
# build dependencies and many extra qml modules
RUN apt-get update && apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends \
qtcreator rustc cargo ninja-build cmake g++ extra-cmake-modules \
qtcreator rustc cargo ninja-build make cmake g++ extra-cmake-modules \
kdesdk-scripts \
gdb valgrind \
qtdeclarative5-dev-tools qtdeclarative5-dev qtquickcontrols2-5-dev \

View File

@ -123,6 +123,8 @@ $ make rust_qt_binding_generator
$ export PATH=$PATH:$PWD/src
```
`cmake ..` uses `make` by default, but you can use another build tool, for example Ninja, like this: `cmake -GNinja ..`.
Now build and run the template project.
```