File: createXCodeProject

package info (click to toggle)
albumshaper 2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,744 kB
  • ctags: 2,047
  • sloc: cpp: 20,875; ansic: 714; sh: 180; makefile: 52; xml: 8
file content (14 lines) | stat: -rwxr-xr-x 419 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

#backup cvs dir
mv AlbumShaper.xcode AlbumShaper.xcode.bak

#make new project
qmake -spec macx-pbuilder -o AlbumShaper AlbumShaper.pro

#restore cvs dir and remove backup dir
mv AlbumShaper.xcode.bak/CVS AlbumShaper.xcode/CVS
rm -rf AlbumShaper.xcode.bak

#overwrite qt_isntall.sh which is all messed up since the .app bundle is not in the build directory
cp resources/macx/qt_install.sh AlbumShaper.xcode/.