source: psi/trunk/makewin.bat@ 139

Last change on this file since 139 was 2, checked in by dmik, 19 years ago

Imported original Psi 0.10 sources from Affinix

File size: 647 bytes
Line 
1@echo off
2
3echo Running qmake ...
4qmake psi.pro
5if errorlevel 1 goto ERROR1
6echo Compiling ...
7nmake
8if errorlevel 1 goto ERROR2
9
10mkdir psiwin
11copy src\psi.exe psiwin\Psi.exe
12copy %QTDIR%\bin\qt-mt*.dll psiwin
13copy ..\qca\qca*.dll psiwin
14copy src\tools\idle\win32\idleui.dll psiwin
15xcopy /e certs psiwin\certs\
16xcopy /e iconsets psiwin\iconsets\
17xcopy /e sound psiwin\sound\
18copy COPYING psiwin
19win32\tod README psiwin\Readme.txt
20win32\tod INSTALL psiwin\Install.txt
21
22echo 'psiwin' created successfully
23goto END
24
25:ERROR1
26echo Error running qmake.. Are you sure you have Qt set up?
27goto END
28
29:ERROR2
30echo Compile failed, stopping.
31goto END
32
33:END
34
Note: See TracBrowser for help on using the repository browser.