forked from visualfc/liteide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@echo off | ||
|
||
setlocal | ||
|
||
set BUILD_ROOT=%CD% | ||
if x%LITEIDE_ROOT%==x set LITEIDE_ROOT=%CD%\..\liteidex | ||
|
||
echo build liteide | ||
echo QTDIR=%QTDIR% | ||
echo . | ||
|
||
if x%QTDIR%==x goto qtdir_fail | ||
|
||
windeployqt --dir liteide/bin liteide/lib/liteide/plugins/webkithtmlwidget.dll | ||
|
||
windeployqt --dir liteide/bin liteide/lib/liteide/plugins/liteeditor.dll | ||
|
||
windeployqt --dir liteide/bin liteide/lib/liteide/plugins/welcome.dll | ||
|
||
windeployqt --dir liteide/bin liteide/lib/liteide/plugins/litebuild.dll | ||
|
||
windeployqt --dir liteide/bin liteide/bin/liteapp.dll | ||
|
||
|
||
|
||
goto end | ||
|
||
:qtdir_fail | ||
echo error, QTDIR is null | ||
goto end | ||
|
||
:end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@echo off | ||
|
||
setlocal | ||
|
||
set BUILD_ROOT=%CD% | ||
if x%LITEIDE_ROOT%==x set LITEIDE_ROOT=%CD%\..\liteidex | ||
|
||
echo build liteide | ||
echo QTDIR=%QTDIR% | ||
echo . | ||
|
||
if x%QTDIR%==x goto qtdir_fail | ||
|
||
windeployqt --no-angle --no-opengl-sw --dir liteide/bin liteide/lib/liteide/plugins/liteeditor.dll | ||
|
||
windeployqt --no-angle --no-opengl-sw --dir liteide/bin liteide/lib/liteide/plugins/welcome.dll | ||
|
||
windeployqt --no-angle --no-opengl-sw --dir liteide/bin liteide/lib/liteide/plugins/litebuild.dll | ||
|
||
windeployqt --no-angle --no-opengl-sw --dir liteide/bin liteide/bin/liteapp.dll | ||
|
||
|
||
|
||
goto end | ||
|
||
:qtdir_fail | ||
echo error, QTDIR is null | ||
goto end | ||
|
||
:end |