forked from plexydesk/plexydesk-0.5-depricated-codebase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
make_win32_installer.bat
31 lines (24 loc) · 1.15 KB
/
make_win32_installer.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
cmake -DCMAKE_INSTALL_PREFIX:STRING="plexydesk"
msbuild PlexyDesktop.sln /t:Build /p:Configuration=Release
mkdir plexydesk
mkdir plexydesk\bin
mkdir plexydesk\bin\plugins
mkdir plexydesk\bin\plugins\imageformats
vcbuild INSTALL.vcproj "Release|Win32"
del /F/S/Q plexydesk\include\qimageblitz\*.*
rmdir /S/Q plexydesk\include\qimageblitz
rmdir /S/Q plexydesk\include
del /F/S/Q plexydesk\*.lib
xcopy %QTDIR%\bin\QtSvg4.dll plexydesk\bin
xcopy %QTDIR%\bin\QtOpenGL4.dll plexydesk\bin
xcopy %QTDIR%\bin\QtNetwork4.dll plexydesk\bin
xcopy %QTDIR%\bin\QtGui4.dll plexydesk\bin
xcopy %QTDIR%\bin\QtCore4.dll plexydesk\bin
xcopy %QTDIR%\plugins\imageformats\qtiff4.dll plexydesk\bin\plugins\imageformats
xcopy %QTDIR%\plugins\imageformats\qsvg4.dll plexydesk\bin\plugins\imageformats
xcopy %QTDIR%\plugins\imageformats\qmng4.dll plexydesk\bin\plugins\imageformats
xcopy %QTDIR%\plugins\imageformats\qjpeg4.dll plexydesk\bin\plugins\imageformats
xcopy %QTDIR%\plugins\imageformats\qico4.dll plexydesk\bin\plugins\imageformats
xcopy %QTDIR%\plugins\imageformats\qgif4.dll plexydesk\bin\plugins\imageformats
"makensis" installer.nsi
rmdir /S/Q plexydesk