mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
.. move the fluff that has collected into the src directory to somewhere more appropriate.
14 lines
434 B
Plaintext
14 lines
434 B
Plaintext
:
|
|
# zap existing if already there
|
|
rm -rf ./GoldenCheetah.xcodeproj
|
|
qmake -spec macx-xcode src.pro
|
|
|
|
#if that worked update the project file created
|
|
if [ -d ./GoldenCheetah.xcodeproj ]
|
|
then
|
|
# update project file for Xcode 4.6
|
|
sed 's/isa = PBXFrameworkReference/lastKnownFileType = wrapper.framework;
|
|
isa = PBXFileReference/g' <GoldenCheetah.xcodeproj/project.pbxproj >tmp
|
|
|
|
mv tmp GoldenCheetah.xcodeproj/project.pbxproj
|
|
fi
|