2025-05-25 15:08:40 +02:00

65 lines
1.3 KiB
Batchfile

@echo off
if not exist "qtbase" git submodule update --init
cd qtbase
.\configure.bat ^
-platform win32-msvc ^
-prefix .\build ^
-opensource ^
-static ^
-release ^
-confirm-license ^
-no-openssl ^
-no-ssl ^
-no-opengl ^
-skip qtcharts ^
-skip qtwebengine ^
-skip qtconnectivity ^
-skip qttools ^
-skip qtlottie ^
-skip qtimageformats ^
-skip qtdeclarative ^
-skip qtsvg ^
-skip qtwayland ^
-nomake examples ^
-nomake tests ^
-optimize-size ^
-skip qdoc ^
-skip qtactiveqt ^
-skip qtcharts ^
-skip qtcoap ^
-skip qtdatavis3d ^
-skip qtfeedback ^
-skip qtgamepad ^
-skip qtgraphicaleffects ^
-skip qtgrpc ^
-skip qthttpserver ^
-skip qtlocation ^
-skip qtlottie ^
-skip qtmultimedia ^
-skip qtnetworkauth ^
-skip qtpim ^
-skip qtpositioning ^
-skip qtquick3d ^
-skip qtremoteobjects ^
-skip qtscxml ^
-skip qtsensors ^
-skip qtserialbus ^
-skip qtserialport ^
-skip qtspeech ^
-skip qtsvg ^
-skip qttools ^
-skip qttranslations ^
-skip qtvirtualkeyboard ^
-skip qtwebchannel ^
-skip qtwebengine ^
-skip qtwebsockets ^
-skip qtwebview ^
-skip qtx11extras ^
-skip qtxmlpatterns
#.\configure.bat -release -platform win32-msvc -prefix .\build -opensource -confirm-license -nomake tests -nomake examples
cmake --build . --parallel
cmake --install .