1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 09:03:36 +02:00

New configurations and schemes for XCode...

... complete and buildable, but still 32 bit builds.  To be modified.
This commit is contained in:
Paul Licameli
2018-11-13 14:23:31 -05:00
parent 407b7fab4a
commit a84bcfaf5b
10 changed files with 1620 additions and 6 deletions

View File

@@ -21,12 +21,12 @@ done
cd ${TOPLEVEL}
mkdir -p mac/build
eval $(g++ -E -dM src/Audacity.h | awk '/#define *AUDACITY_(VERSION|RELEASE|REVISION|MODLEVEL) /{print $2 "=" $3}')
if [ $CONFIGURATION == 'Debug' ]
then
AUDACITY_EXECUTABLE=Audacity
else
AUDACITY_EXECUTABLE=Audacity.sh
fi
case $CONFIGURATION in
Debug|Debug64)
AUDACITY_EXECUTABLE=Audacity;;
*)
AUDACITY_EXECUTABLE=Audacity.sh;;
esac
cat >mac/build/Info.plist.h <<EOF
#define AUDACITY_EXECUTABLE ${AUDACITY_EXECUTABLE}
#define AUDACITY_VERSION ${AUDACITY_VERSION}