10 lines
248 B
Batchfile
10 lines
248 B
Batchfile
@echo off
|
|
|
|
if not exist "qtbase" git submodule update --init
|
|
|
|
cd qtbase
|
|
.\configure.bat -static -release -platform win32-msvc -prefix .\build -opensource -confirm-license -nomake tests -nomake examples
|
|
|
|
cmake --build . --parallel
|
|
cmake --install .
|