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