~sithlord48/makoureactor/trunk

« back to all changes in this revision

Viewing changes to deploy.bat

  • Committer: myst6re
  • Date: 2016-04-30 13:54:39 UTC
  • mfrom: (335.1.184)
  • Revision ID: git-v1:6008f320ed4baa76582ba6e251926cb20b57c3eb
Merge branch 'develop'

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
if not exist %OUTPUT_DIR% mkdir %OUTPUT_DIR%
11
11
 
12
12
rem Deploy DLLs
13
 
%LIB_DIR%\windeployqt.exe --force --release --dir %OUTPUT_DIR% --no-quick-import --no-translations --no-webkit2 --no-svg --no-webkit %EXE_PATH%
 
13
%LIB_DIR%\windeployqt.exe --force --release --dir %OUTPUT_DIR% --no-quick-import --no-translations --no-webkit2 --no-angle --no-svg --no-webkit %EXE_PATH%
14
14
 
15
15
rem Removing unused DLLs
16
 
rem del /q %OUTPUT_DIR%\opengl32sw.dll
 
16
del /q %OUTPUT_DIR%\opengl32sw.dll
17
17
 
18
18
rem Deploy Translations
19
19
for %%l in (%LANGUAGES%) do (
24
24
rem Deploy Exe
25
25
xcopy /y %EXE_PATH% %OUTPUT_DIR%
26
26
 
27
 
 
28
27
rem Compress Exe and DLLs. Note: DLLs in platforms/ directory should not be compressed.
29
28
upx %OUTPUT_DIR%\*.dll %OUTPUT_DIR%\*.exe
30
 
 
31
 
exit 0