Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfc committed Dec 7, 2016
1 parent 72e8713 commit a37323d
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
32 changes: 32 additions & 0 deletions build/deploy_qt5.4.cmd
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
30 changes: 30 additions & 0 deletions build/deploy_qt5.6.cmd
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

0 comments on commit a37323d

Please sign in to comment.