Skip to content

Commit 9bf778c

Browse files
committed
Added qttools to all the dockerfiles
* #63
1 parent a01fe85 commit 9bf778c

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

tools/installer/Dockerfiles/centos7/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ RUN git clone git://code.qt.io/qt/qtbase.git && \
8484
./configure --prefix=/opt/mlc-python-2.7.11/Qt-5.7.1 -xkb-config-root /usr/share/X11/xkb -no-gtk -nomake tests -nomake examples -qt-xcb --opensource --confirm-license && make -j4 && make install && \
8585
rm -rf /tmp/qtbase
8686

87+
RUN git clone git://code.qt.io/qt/qttools.git && \
88+
cd qttools && \
89+
git checkout 5.7 && \
90+
/opt/mlc-python-2.7.11/Qt-5.7.1/bin/qmake CONFIG+=release && make -j4 && make install && \
91+
rm -rf /tmp/qttools
92+
8793
RUN git clone git://code.qt.io/qt/qtcharts.git && \
8894
cd qtcharts && \
8995
git checkout 5.7 && \

tools/installer/Dockerfiles/fedora-20/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ RUN git clone git://code.qt.io/qt/qtbase.git && \
9292
./configure --prefix=/opt/mlc-python-2.7.11/Qt-5.7.1 -xkb-config-root /usr/share/X11/xkb -no-gtk -nomake tests -nomake examples -qt-xcb --opensource --confirm-license && make -j4 && make install && \
9393
rm -rf /tmp/qtbase
9494

95+
RUN git clone git://code.qt.io/qt/qttools.git && \
96+
cd qttools && \
97+
git checkout 5.7 && \
98+
/opt/mlc-python-2.7.11/Qt-5.7.1/bin/qmake CONFIG+=release && make -j4 && make install && \
99+
rm -rf /tmp/qttools
100+
95101
RUN git clone git://code.qt.io/qt/qtcharts.git && \
96102
cd qtcharts && \
97103
git checkout 5.7 && \

tools/installer/Dockerfiles/ubuntu-16.10/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ RUN git clone git://code.qt.io/qt/qtbase.git && \
106106
make -j4 && make install && \
107107
rm -rf /tmp/qtbase
108108

109+
RUN git clone git://code.qt.io/qt/qttools.git && \
110+
cd qttools && \
111+
git checkout 5.7 && \
112+
/opt/mlc-python-2.7.11/Qt-5.7.1/bin/qmake CONFIG+=release && make -j4 && make install && \
113+
rm -rf /tmp/qttools
114+
109115
RUN git clone git://code.qt.io/qt/qtcharts.git && \
110116
cd qtcharts && \
111117
git checkout 5.7 && \

0 commit comments

Comments
 (0)