~ubuntu-branches/ubuntu/jaunty/psi/jaunty

« back to all changes in this revision

Viewing changes to makewin.bat

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
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