1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/scripts/build.bat

20 lines
458 B
Batchfile
Raw Normal View History

2018-11-08 21:08:33 +01:00
setlocal EnableExtensions
set PATH=%PATH%;C:\Qt\Tools\QtCreator\bin
set PATH=%PATH%;C:\Qt\5.11.2\msvc2017_64\bin
set root=%cd%
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsx86_amd64.bat"
2018-11-08 21:14:18 +01:00
mkdir package
cd package
2018-11-08 21:10:41 +01:00
2018-11-08 21:14:18 +01:00
echo "Begin build of ScreenPlay "
2018-11-08 21:16:16 +01:00
qmake.exe ../ScreenPlay.pro -spec win32-msvc "CONFIG+=release"
2018-11-11 15:51:28 +01:00
jom.exe clean
jom.exe qmake_all
2018-11-08 21:08:33 +01:00
jom.exe -j8
2018-11-11 15:51:28 +01:00
jom.exe install
2018-11-08 21:08:33 +01:00
echo "Build ScreenPlay finished!"