mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 10:14:32 +00:00
12 lines
203 B
Batchfile
12 lines
203 B
Batchfile
|
set QMAKE=%1
|
||
|
|
||
|
SET BASE_DIR=%~dp0
|
||
|
|
||
|
|
||
|
IF NOT EXIST %QMAKE% (
|
||
|
echo "Error! win build support only native qmake, use ./sharedBuid.bat Path/to/qmake.exe"
|
||
|
exit(1)
|
||
|
)
|
||
|
|
||
|
%QMAKE% %BASE_DIR%\CQtDeployer.pro
|