~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to makewin.bat

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

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 cutestuff\idle\win32\idleui.dll psiwin
 
14
xcopy /e certs psiwin\certs\
 
15
xcopy /e iconsets psiwin\iconsets\
 
16
xcopy /e sound psiwin\sound\
 
17
copy COPYING psiwin
 
18
win32\tod README psiwin\Readme.txt
 
19
win32\tod INSTALL psiwin\Install.txt
 
20
 
 
21
echo 'psiwin' created successfully
 
22
goto END
 
23
 
 
24
:ERROR1
 
25
echo Error running qmake..  Are you sure you have Qt set up?
 
26
goto END
 
27
 
 
28
:ERROR2
 
29
echo Compile failed, stopping.
 
30
goto END
 
31
 
 
32
:END
 
33