diff --git a/docker/Dockerfile b/docker/Dockerfile index 05a7fc0..7f9fcb5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 \ diff --git a/tutorial/time_for_rust_and_qml.md b/tutorial/time_for_rust_and_qml.md index cb33771..07f2376 100644 --- a/tutorial/time_for_rust_and_qml.md +++ b/tutorial/time_for_rust_and_qml.md @@ -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. ```