This commit is contained in:
Faraz Fallahi
2020-06-06 16:50:44 -04:00
parent 62f9fd016d
commit a42a4f6238
13 changed files with 105 additions and 70 deletions

13
Dockerfile.win64d Normal file
View File

@@ -0,0 +1,13 @@
FROM fffaraz/qt:mxe
RUN \
cd /opt && \
git clone https://github.com/mxe/mxe.git && \
cd /opt/mxe && \
NPROC=$(($(nproc)+4)) && \
make --jobs=$NPROC JOBS=$NPROC MXE_TARGETS='x86_64-w64-mingw32.shared' qtbase && \
ln -s /opt/mxe/usr/bin/x86_64-w64-mingw32.shared-qmake-qt5 /usr/bin/qmake && \
qmake --version && \
exit 0
ENV PATH="${PATH}:/opt/mxe/usr/bin"