From f175244a99d91c058d1616b48930fe00ca5d55c1 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 27 Jul 2022 00:08:21 +0200 Subject: [PATCH] Fix: Choose opensource and confirm license --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d34a2d5..a190cdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,16 @@ RUN echo "**** setup environment ****" && \ \ echo "**** configure Qt ****" && \ mkdir build-qt && cd build-qt && \ - /workspace/qt-everywhere/configure -xplatform android-clang -disable-rpath -nomake tests -nomake examples -android-ndk /usr/lib/android-sdk/ndk/${ANDROID_NDK_VERSION} -android-sdk /usr/lib/android-sdk -no-warnings-are-errors && \ + /workspace/qt-everywhere/configure \ + -opensource \ + -confirm-license \ + -release \ + -xplatform android-clang \ + -disable-rpath \ + -nomake tests -nomake examples \ + -android-ndk /usr/lib/android-sdk/ndk/${ANDROID_NDK_VERSION} \ + -android-sdk /usr/lib/android-sdk \ + -no-warnings-are-errors && \ \ echo "**** build and install Qt ****" && \ cd build-qt && \