From f4f0cca856a3a5e36e91a245f48cb1e2d14413bb Mon Sep 17 00:00:00 2001 From: Pavel Lobashov Date: Wed, 11 Sep 2019 11:47:16 +0300 Subject: [PATCH] Add help --- Dockerfile | 4 ++-- README.md | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 696cc6f..8f2c03e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,5 +19,5 @@ RUN make install ADD . /build_tools WORKDIR /build_tools RUN /build_tools/scripts/dependencies -RUN ./configure --module "desktop builder" --platform native --update 1 --branch develop --clean 0 --qt-dir "/usr/local/Qt-5.9.8" -RUN ./make +RUN bash ./configure --module "desktop builder" --platform native --update 1 --branch develop --clean 0 --qt-dir "/usr/local/Qt-5.9.8" +RUN bash ./make diff --git a/README.md b/README.md index c40c910..8a72599 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ ### Please note, that all instruction tested on Ubuntu 14.04 -1. Install QT. Tested on https://download.qt.io/archive/qt/5.9/5.9.8/single/qt-everywhere-opensource-src-5.9.8.tar.xz +1. Install QT. Tested on [qt-5.9.8](https://download.qt.io/archive/qt/5.9/5.9.8/single/qt-everywhere-opensource-src-5.9.8.tar.xz) QT installer requires GUI. If you want to build on server without GUI - compile qt from source. + +2. Install dependencies via `bash ./scripts/dependencies` +3. Configure build via `bash ./configure` with additional params, described in help +4. Run build via `bash ./make`