Fix: Choose opensource and confirm license
This commit is contained in:
parent
5e0efe4ba1
commit
f175244a99
1 changed files with 10 additions and 1 deletions
11
Dockerfile
11
Dockerfile
|
@ -35,7 +35,16 @@ RUN echo "**** setup environment ****" && \
|
||||||
\
|
\
|
||||||
echo "**** configure Qt ****" && \
|
echo "**** configure Qt ****" && \
|
||||||
mkdir build-qt && cd build-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 ****" && \
|
echo "**** build and install Qt ****" && \
|
||||||
cd build-qt && \
|
cd build-qt && \
|
||||||
|
|
Loading…
Reference in a new issue