Fix: Choose opensource and confirm license

This commit is contained in:
Dorian Zedler 2022-07-27 00:08:21 +02:00
parent 5e0efe4ba1
commit f175244a99
Signed by: dorian
GPG Key ID: 989DE36109AFA354
1 changed files with 10 additions and 1 deletions

View File

@ -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 && \