Files
docker-qt/Dockerfile.win64s
2022-04-10 20:17:35 -04:00

10 lines
285 B
Docker

FROM fffaraz/qt:mxe
RUN \
cd /opt/mxe && \
NPROC=$(($(nproc)+4)) && \
make --jobs=$NPROC JOBS=$NPROC MXE_TARGETS='x86_64-w64-mingw32.static' qtbase && \
ln -s /opt/mxe/usr/bin/x86_64-w64-mingw32.static-qmake-qt5 /usr/bin/qmake && \
qmake --version && \
exit 0