mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-18 20:50:09 +08:00
15 lines
474 B
Batchfile
15 lines
474 B
Batchfile
git clone https://code.qt.io/qt/qt5.git qt6
|
|
cd qt6
|
|
|
|
git switch %1
|
|
mkdir build
|
|
CALL .\configure.bat -release -static -prefix ./build -static-runtime -submodules qtbase,qtimageformats,qtsvg,qttranslations -skip tests -skip examples -gui -widgets -init-submodules -no-schannel -openssl-linked -no-dtls -no-ocsp
|
|
echo on branch %1
|
|
echo config complete, building...
|
|
cmake --build . --parallel
|
|
echo build one, installing...
|
|
ninja install
|
|
echo installed Qt %1 in static mode
|
|
|
|
cd ..
|