From ea7f013d0d6213658c72cd6b7a4fb8abfffd9c0d Mon Sep 17 00:00:00 2001 From: "Mark K. Kim" Date: Mon, 27 Nov 2017 00:56:41 -0500 Subject: [PATCH] Rework Mac port to be more Linux-like without needing to launch XCode. See macos/README.txt for information. --- custom/macos.sh | 53 + custom/macosx.sh | 33 - {macosx => macos}/Info.plist | 12 +- macos/PkgInfo | 1 + macos/README.txt | 49 + {macosx => macos}/tuxpaint.icns | Bin macosx/.indent.pro | 1 - macosx/English.lproj/InfoPlist.strings | Bin 320 -> 0 bytes macosx/English.lproj/SDLMain.nib/classes.nib | 79 - macosx/English.lproj/SDLMain.nib/info.nib | 20 - .../SDLMain.nib/keyedobjects.nib | Bin 12983 -> 0 bytes macosx/English.lproj/SDLMain.nib/objects.nib | Bin 2514 -> 0 bytes macosx/Read Me.txt | 157 - macosx/SDLMain.h | 48 - macosx/SDLMain.m | 744 -- macosx/TransparentTextView.h | 32 - macosx/TransparentTextView.m | 92 - macosx/TuxPaint.xcodeproj/project.pbxproj | 8783 ----------------- macosx/credits.txt | 11 - macosx/fcinstaller.m | 109 - macosx/fonts.conf | 458 - macosx/fonts.dtd | 222 - macosx/message.h | 27 - macosx/message.m | 55 - macosx/patch-test.sh | 14 - macosx/patch.c | 365 - macosx/patch.h | 14 - macosx/speech.h | 24 - macosx/speech.m | 53 - macosx/version.plist | 16 - macosx/wrapperdata.h | 30 - src/macos.c | 48 + src/macos.h | 9 + src/macosx_print.h | 40 - src/macosx_print.m | 327 - 35 files changed, 164 insertions(+), 11762 deletions(-) create mode 100755 custom/macos.sh delete mode 100755 custom/macosx.sh rename {macosx => macos}/Info.plist (73%) create mode 100644 macos/PkgInfo create mode 100644 macos/README.txt rename {macosx => macos}/tuxpaint.icns (100%) mode change 100755 => 100644 delete mode 120000 macosx/.indent.pro delete mode 100644 macosx/English.lproj/InfoPlist.strings delete mode 100755 macosx/English.lproj/SDLMain.nib/classes.nib delete mode 100755 macosx/English.lproj/SDLMain.nib/info.nib delete mode 100644 macosx/English.lproj/SDLMain.nib/keyedobjects.nib delete mode 100755 macosx/English.lproj/SDLMain.nib/objects.nib delete mode 100644 macosx/Read Me.txt delete mode 100755 macosx/SDLMain.h delete mode 100644 macosx/SDLMain.m delete mode 100644 macosx/TransparentTextView.h delete mode 100644 macosx/TransparentTextView.m delete mode 100644 macosx/TuxPaint.xcodeproj/project.pbxproj delete mode 100644 macosx/credits.txt delete mode 100644 macosx/fcinstaller.m delete mode 100644 macosx/fonts.conf delete mode 100644 macosx/fonts.dtd delete mode 100644 macosx/message.h delete mode 100644 macosx/message.m delete mode 100644 macosx/patch-test.sh delete mode 100644 macosx/patch.c delete mode 100644 macosx/patch.h delete mode 100644 macosx/speech.h delete mode 100644 macosx/speech.m delete mode 100644 macosx/version.plist delete mode 100644 macosx/wrapperdata.h create mode 100644 src/macos.c create mode 100644 src/macos.h delete mode 100644 src/macosx_print.h delete mode 100644 src/macosx_print.m diff --git a/custom/macos.sh b/custom/macos.sh new file mode 100755 index 000000000..b91720faa --- /dev/null +++ b/custom/macos.sh @@ -0,0 +1,53 @@ +#!/bin/sh + +BUNDLE=TuxPaint.app +BINARY="$BUNDLE/Contents/MacOS/tuxpaint" +LIBS=`find $BUNDLE/Contents/Resources/lib -type f` +TARGET="$BUNDLE/Contents/lib" + + +# Sanity check +if [ ! -r "$BINARY" ]; then + echo "$BINARY: Where is this file?" 1>&2 + exit 1 +fi + +if [ ! -d "$BUNDLE" ]; then + echo "$BUNDLE: Where is this file?" 1>&2 + exit 1 +fi + +# Ensure the shared library folder exists +mkdir -p "$TARGET" + +# Copy there any shared libraries referenced by the tuxpaint binary, and any +# shared libraries those shared libraries reference, and so on. We do this by +# first copying over any shared libraries referenced by the binary, then +# repeatedly copying over the shared libraries referenced by any libraries in +# the target folder until we don't see any more files appearing. There are +# better ways to do this than copying repeatedly but it works. And you know +# what they say about premature optimization... +dylib="$BINARY $LIBS" +count=0; last=-1 +echo " * Copying Shared Libraries..." +while [ $count -ne $last ]; do + cp -p `otool -L $dylib | grep '^\t[/]opt[/]local[/]' | sed -e 's/^[[:space:]]*\([^[:space:]]*\)[[:space:]].*/\1/' | sort | uniq` $TARGET + dylib="$TARGET/*" + + last=$count + count=`ls -f $dylib | wc -l` +done +echo " -> Copied" $count "files to $TARGET" + +# We just copied over a bunch of shared libraries into a random folder in our +# bundle, but the tuxpaint binary and the shared libraries won't know to look +# in that folder unless we tell them. So we tell them. +echo " * Fixing Shared Library References..." +for i in "$BINARY" $LIBS $TARGET/*; do + echo " -> $i..." + for j in `otool -L $dylib | grep '^\t[/]opt[/]local[/]' | sed -e 's/^[[:space:]]*\([^[:space:]]*\)[[:space:]].*/\1/'`; do + n=`echo "$j" | sed 's/^[/]opt[/]local[/]/@executable_path\/..\//'` + install_name_tool -change "$j" "$n" "$i" + done +done + diff --git a/custom/macosx.sh b/custom/macosx.sh deleted file mode 100755 index 4e50fbdf1..000000000 --- a/custom/macosx.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -#//EP added in version 0.9.22 -# called from within XCode -# contains customization tasks - -export APP="${BUILT_PRODUCTS_DIR}/${TARGET_NAME}.app" -#export CUSTOM="${BUILT_PRODUCTS_DIR}/../../../custom/content.zip" -export CUSTOM="content.zip" -export DST="$APP/Contents/Resources" -export FONTS="$DST/fonts" -export LOG="/tmp/custom.log" - -if [ -f $CUSTOM ]; -then - echo Custom content file "$CUSTOM" found - echo Installing custom content into target "$APP" - echo Content folder is "$DST" - - # clean up fonts folder - echo Cleaning up fonts folder "$FONTS" - /usr/bin/sudo /bin/mv -f "$FONTS/default_font.ttf" /tmp # save the font(s) we want to keep - /usr/bin/sudo /bin/rm -rf "$FONTS/"* # empty fonts folder - /usr/bin/sudo /bin/mv -f "/tmp/default_font.ttf" "$FONTS" # restore the font(s) we want to keep - - # install content from archive - echo Extracting content from archive into target - /usr/bin/unzip -o "$CUSTOM" -d "$DST" > "$LOG" - - echo Custom content has been installed -else - echo Custom content file $CUSTOM not found -fi - diff --git a/macosx/Info.plist b/macos/Info.plist similarity index 73% rename from macosx/Info.plist rename to macos/Info.plist index cba2ca1c7..2d098809c 100644 --- a/macosx/Info.plist +++ b/macos/Info.plist @@ -5,9 +5,9 @@ CFBundleDevelopmentRegion English CFBundleExecutable - Tux Paint + tuxpaint CFBundleGetInfoString - 0.9.22, Copyright 2009, Tux Paint Development Team + 0.9.23, Copyright 2009-2017, Tux Paint Development Team CFBundleIconFile tuxpaint.icns CFBundleIdentifier @@ -19,14 +19,10 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.9.22 + 0.9.23 CFBundleSignature TXPT CFBundleVersion - 2009-06-29 - NSMainNibFile - SDLMain - NSPrincipalClass - NSApplication + 2017-11-27 diff --git a/macos/PkgInfo b/macos/PkgInfo new file mode 100644 index 000000000..c00b87013 --- /dev/null +++ b/macos/PkgInfo @@ -0,0 +1 @@ +APPLTXPT \ No newline at end of file diff --git a/macos/README.txt b/macos/README.txt new file mode 100644 index 000000000..f1335e45f --- /dev/null +++ b/macos/README.txt @@ -0,0 +1,49 @@ +WHAT IS THIS +------------ +This document describes how to build Tux Paint for macOS 10.12 Sierra and later. + +Tux Paint 0.9.22 and earlier required building Tux Paint from the XCode IDE. +Starting with 0.9.23, however, Tux Paint for macOS is built as though it were a +Linux application. + + +REQUIREMENTS +------------ +Although Tux Paint is run without the XCode IDE, XCode itself is still required +to build Tux Paint. Download it from the App Store, and launch it once to +accept its license agreements. + +Building Tux Paint also requires various libraries from MacPorts. Install them +to the default /opt/local path according to the instructions found on their +website: + + https://www.macports.org/ + +As of this writing, the required libraries are: + + cairo + fribidi + libpaper + libpng + librsvg + libsdl + libsdl_image + libsdl_mixer + libsdl_pango + libsdl_ttf + zlib + +... but you should intall any package that is required by the latest version of +Tux Paint. + + +HOW TO BUILD +------------ +Simply, run: + + % make + % make install + +... to create the TuxPaint.app application bundle that can be run in-place or +copied to /Applications. Zip it up for distribution. + diff --git a/macosx/tuxpaint.icns b/macos/tuxpaint.icns old mode 100755 new mode 100644 similarity index 100% rename from macosx/tuxpaint.icns rename to macos/tuxpaint.icns diff --git a/macosx/.indent.pro b/macosx/.indent.pro deleted file mode 120000 index c1779574c..000000000 --- a/macosx/.indent.pro +++ /dev/null @@ -1 +0,0 @@ -../src/.indent.pro \ No newline at end of file diff --git a/macosx/English.lproj/InfoPlist.strings b/macosx/English.lproj/InfoPlist.strings deleted file mode 100644 index 034860878dc78bc2c997ceaf0eb2b3f327779e41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmYk1OAo<76ot>)ub6a27bSLxL_&nbD|BIDGqk1gsMI6)@%W}TGHLHQ_wmi0_eWLv zG8!q!?oP~gA(QDuG{l7e5SO3>os0g9u4MOgKZ`COW{ES=LId4&gnQDQ zx`k`CW-3+}!kLL2{#Lt!(T3xx%qA67T{TVv6+(FsXH2KC+JGf>kH{#I5q$P diff --git a/macosx/English.lproj/SDLMain.nib/classes.nib b/macosx/English.lproj/SDLMain.nib/classes.nib deleted file mode 100755 index 8eb005143..000000000 --- a/macosx/English.lproj/SDLMain.nib/classes.nib +++ /dev/null @@ -1,79 +0,0 @@ - - - - - IBClasses - - - CLASS - TransparentTextView - LANGUAGE - ObjC - SUPERCLASS - NSTextView - - - CLASS - FirstResponder - LANGUAGE - ObjC - SUPERCLASS - NSObject - - - ACTIONS - - makeFullscreen - id - onAbout - id - onHelp - id - onNew - id - onOpen - id - onPageSetup - id - onPrint - id - onQuit - id - onRedo - id - onSave - id - onUndo - id - - CLASS - SDLMain - LANGUAGE - ObjC - OUTLETS - - aboutWindow - NSWindow - acknowledgmentsText - TransparentTextView - appnameText - NSTextField - messagePanel - NSWindow - messageProgress - NSProgressIndicator - messageStatus - NSTextField - messageText - NSTextField - versionText - NSTextField - - SUPERCLASS - NSObject - - - IBVersion - 1 - - diff --git a/macosx/English.lproj/SDLMain.nib/info.nib b/macosx/English.lproj/SDLMain.nib/info.nib deleted file mode 100755 index 11cecfb9b..000000000 --- a/macosx/English.lproj/SDLMain.nib/info.nib +++ /dev/null @@ -1,20 +0,0 @@ - - - - - IBFramework Version - 629 - IBLastKnownRelativeProjectPath - ../../TuxPaint.xcodeproj - IBOldestOS - 5 - IBOpenObjects - - 372 - - IBSystem Version - 9C31 - targetFramework - IBCocoaFramework - - diff --git a/macosx/English.lproj/SDLMain.nib/keyedobjects.nib b/macosx/English.lproj/SDLMain.nib/keyedobjects.nib deleted file mode 100644 index e168c637bf154ad5043c0b2e933020588a590963..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12983 zcmbVy2Y3`!_xC-sGn*|bGu!)4%FfayA@mYL50HeAkOTBm~6w`9EKju*1~X8ygn8!%W94_PR|N8)y%8MTa{U{ITwX%n&Tz{t2e$yl8A0r z!Kgloo3)|l5QSqupRD)2jEfI4Nt=}@FKhcZ^B#fHoS{e-a{(y!vQ!5hu{jV`O;7&UhFv<750x78784FxgBF(~rqz1~Vg>G0a$I95bGo z%#<=^%rs^O6Jq8tHB2p2&n#e?m^ibTS;0_7W>zy-FzcCXm}{Bqn46fJng22ynJvsc z%)QKg%ns%uW)Jf?vzK{-d6s#F*~h%Wyve-9yvH154l#$BBg|*aapr608|EbQ8*_^J zo%uu4L(^X~LX)o%wXJc_?}YxZcK)I3E7X`Urc%?p~BG{3Szwt}r>r?WHInQRq1i=E9@vlp@v&*2GUCypx zDJ!#=vTN9VoRzb2cFw^$ITz>VJe-&FaehwZ(zy&Slgr`)oWupWZd`Y+2iKG9#r5X; za2IfWxoj?n>&NAC{kZ|$KyDB>m>a?k<%V&?xe;6*Hg95C{-P zxjd^T5{k!X6_pkzk_@vbuBOvy<$gF`9*VSt@s6{oG{2@M9FNz}sgKk*FDb6CZGVPq zN5`U3%uvkT_{^fxqEJIPuF%2pxF)<<6l0qBYf@&8 zi$$9YL(x!OxT%`wi%QGuQJzS+qCQ$1Ta=KyU5^fO_VdWCu$_)gl&sD}zf05B*MtIh4>O`i%@V0&JJT`!>2Fhx8-4sHm!(q6p=vMtLxR z3?ze)OP_diQ+>3KvM7FjBZ6N|NHNsgWC$5bhLPcw2@izhGZKR+(r6>Y$q16C`k}C; zIfN>fs#GeAN;?M$MH6)L$*4_a6v>;7g0#e&V-1OiXrqErqhmF(P^TXh(Z-T-WIVc{ z9Yf<(w=qGcfJ|&76Uii!heqjO9B!V5T*J+Ym4&2;=I!9^q?k-0C1ffoC1qq9DJK=A zl1wKv$V^g2W|7&Xnp{XiWDcnzwIoapw17^c7tsh^OqWwiSJBJqRrES~BfXVwqMPYf zdN;kFK0^1O?+WXVCAQ`&E4royRTfeGc_fT~ zr{M1>+O`F48^!B5x@ZZBixQf0N+=qRbVTk|lr2-(zfabq^{ye;lIzF@ay_|$+(>RB zHmGb zq80%N9f`yIjyT&$^EQ(^$R^T8Hd8B=XiqxyfGW;bvJC~=t_rlA+(qst_n=7kqDae8 z4>i;g-bRNb5j5x6sFFUlXu<%sQM(>ln5ubeYwO^_y~Nypip~1<@83%tkh^Tz0kRXd zeULmv9wv{FUF1=+n>Y!ogs!~yR=ExpI{h=;_wNy=Rsj06Gjc*E}e-c^# z8hL#ad7b3pQUy=nMaplGH_2P%ZSoG;Pu?Z(k@wM#s!)owiejaWp&BJ5)eD88q7?RC zkyxDydLs4nTI!?T^3o;o=5Rw*O+sUJ{yWIwP4W>^KS&NC<%)Ur&0#9?nn`{83`qP8 zM&=429wBdRLTU2O7V1+J>KJ*SiZqjEP%pw-JNZuIb!G7-6-V`Lr}s7aW;6MQe2Wp2 zfKz3~xcYFUR&fGqm#>yBE4+9y>k*c&<}ASXW6pE z0v+f#gFc~DHE+gcO|iNr46TA_tx}O=WiLufxe&85B69809}IB-ziR&as~+~5H(_-Jq1hh9MY(rlW8ZG}=2 z!{U@N?KQePKUu4_V(Fd8>MTHk;Q zDcc>ygTXwZ{Y?zUgHDO@9LRxwkPH2>(qr(cWl&APL398eh*Sz15G-ajw=8bN+SlBt zz9t$^M8IGevI&MLS%7_0qDkl=keDzGhPT0RB~j3=Dw)o#fIJwv1x9ws3iY`HXXiy^ z7z1NF!bJt%VRZNz;LRS0k=b7j(tgSiYt_F1FBBs1ZdQO-#l;bbi$f6-OPfQ@EpbCa z>{2LegEE+=Hb3n>OMX*RXo+H4P%p8|MSE(^g4vs3cDrHQ`-5;pqY{)=7-{(<5^eoBkK5nKqkNqZiUqkJ5%vBqAn?x~Q}ZqEbP-bR+N_c?n)n+72mE zw6N_+_H+n)Eh5%SMDg7#@G3h0HFzBw5nskG#wJNQ>_H#a(h!|PYue4GfN74Jkp229 zB`mkU5@Y5vY+&Mzp(bpt6af_IL9FZ;CKCG{*uNR}CsJE!T-2SAI>YEx`;N= zg$J-ce+tLoGdK>P!x!)+d<9>_H}EZd2j9a9IEi?q?i`GKpc-NzG~{Q6{N!DWIHaFd2@~Zep}*chbQZ&4}Ip+*nhC!WZGY z30V(O-Nxt{LmOjAKqA)Y1o|oM@;^Zk4ii6<%A}#m8M=gG-S~&m854ZNm=i{4Y-piY zda-JkrCsd8I2jk?Mq7M957LjSCe+u4McglnSm;aUO`C_8L%K%98WLeLF(PJSM68(E zaZK5s2kK5$6|5W6T@_5Gm!40sUMN`aE`qJ3mm~zMES(oyB<4pV2(z}9sKOpEx*Qh7 z&q#xeBFsQ$5Hd2-)$~8-V>A>Q4QpqVhZa~%FH;$HTlDQPZsZ%4 zU7;wI#42LZ;>K|F9BvbtNh-H>^vd^D0$oC!De6>7;dDj2N^9ohRx^YfO=Z(rioccp zccUm(#iCQN9^z?2OXE3QDw*jjm#gWu=hLYQb(+;hr}gxjgihr};YEG=^eKs!$D%kq zi>jZgW9F$Y*+6eNAJzFx#!PPc1)Yzyr%N>B7TEKp#FI z@#m5F3+=>TM&b|Bhg9M_&sh02=5@64G5Xo;&cZED2uB)A@{pr4IEUkY=3SNJF8bK{ zI37TbAGC8+66{gBTjjWBE+$x$dWzGGncIj_GX;+syXb>wXLq2Zj-jKh=%~kMwma%v zZ$=PNzrsmIMARoLYr~On9Rm5;j{KfEp$hpFefE4p{)j^U)J4dr=`#r-%SuBF!zFRl zTp1wTW5dV%$(*KN@8Ekee=(^V0;`yX%sQqGPHMEwM5a!o*BHnqCXd;VC}(3X#eMT? z(x$PHh{gtMnVk?}UM8D09%$6~n5UU;+tkGmK-;?>8ARJ*T>GN0_Ucg53CVD&F zMx*p~x{hw3`{_PxoY&A@h?-03ZMZF|z!Rm;5GUGDxov7?)r^NP zH^G-AuVckT%9bbkosKnyH17^LLK|jRcbv?{m6DB;X-dv+XEamcD<)4f4Sn5S#54xY z4E2<2P6IB%6R5;l3JSZ1zR?bD`{jqpHTv)c^vpZx*=*J+lXrQ!$hDH@ZP8?Dv>35LjRzy;b&Rn?^yt44wlU7L2w#namtq5wXae@p50w*Zr32|; zaGj#~LX8a@o;s!*rprzY>5nnEH(+=^Pw)A^Dz3obnebU!g|1dASonW98nf}vvxL15 zX+-JaPGOJyo0czYcAm9x7cSgMKj~cfX_*3oii(PxA3fvdy%>qi)AWIvD4ud|uSlm% z!xt=?XYfG(i;j!u@#3pQe7^|OHUaMZRf{oyYF;jCi7NIf1>^uXE1TD#QI|GbxL=)@+ zjJIPPZ9|Epm_GY4n)YEjNhpn?&91Yc@j{HZ$q0^TpwX&=;~8jdKs#LBZhyABssY=B z?aB6Hd$WDm3)sGFHk-rtV{_U5>;QHkJBS_34q=C~!`R{M2sV!$$>x(rb~HN%qU<EFHdiNN-|SW1gpU!$I1 zh}}B7GZfVI@BW(ErPs$3_AaLo2|9|8yF^I8vm>Ny%h|nMM+N?nr}Zpp65X@m9Dk@& zXLr@2cXpL}2GjWt{A@CXiQ`5^r7k|~R8?(6@u8*5!;Y{LW$7aq@t-O~${)ew9yJsnn&(3vii6f+aaoQ_UY1=RfrsRI>A#l7n6uKgydQ94dig3zkG z)jp^1#5dfv_||(0tRdxRb)YxmTkhxaJ@-~D*4NP|@xAv8_{RGx>`CwM(v=zzejn-V zOcnUug#f%-1>gwXd{%$DN9|B2ArLF?%g^mo@5Z<0m(v35S83OdwZl?xs@7rOV&7)p zVfVA|vhT6)vj^A@*bmu{*pJzR>>>6rdxSm8e!_mr9%DaakF%e%U$9@YU$I}a->~1Z z-?87bC)kth5A2WZPwda^FYK@EZ|o`dclHnVPxdtX7yCCyIN%sg!?7I4X}Kg$$LTo( zXXKK(6fTuZ<9JTsOq`iReD%rTmqC;vU4{%9GG)k;As~Y!Lr{ipGIW=rhYUSs=p{pM z8T!a@fed|R$d(~ThJG^S%Fthi0Wu7fVUP@iWf&sEP#K2FFkFTaGUUlHQigmPM#(T* zhA}dXm0_F=<7Jp2LxBtvWtb$xWEl!&D3YOAhAA?X$S_rgQW?r*m?lHH3>7j|$}nAq z88Xb2p-P5XGR&5tT80Z{2nlc-e};# z{|x_}0M`kym|rWvG6B}|7YWcPz-0oo@^u0%=TGx7{(1pg1Q>)b?f7Q}hzhVo0GYpu z$2avb&RhqxEii@6IZLgV<{Mw__$;YzWyaT z{O%|Nzc0$hx3_utiQQEEO_<*wy6aMyGH<+gGUa=W=_xaYW^xnH?c+#lR& z?r$wx zOe#*QPr5$o_M~k|cP8DJ^lH+*QM)v=z8h;>jvru z>xSxv>t^fb>Kb&5bW3!tx@Ec*I;vZ#yHt0pZm;fT-9gKBT`$AJND37wcE)|D#{8->Sb)zeoR~{$2h1`VaIU=@04; z>yPVyG!TQ%U@#;b9ENm*WEg4~Zpbs_8%7(-4K;?aVV+@uVX0xA;U>c-!@Y*xhGz}0 z7~V7dVbmIVqu1y+rW-Sjy^I$avyHjN0mebb;l@1U1Y@DG(%5KRVq9sw(fG9SHRA!} zhsKYMhm41fM~$Bvj~R~}zc8LO{+LXXnPfIuo2*MVBqt|#OCFQFIQi=22a@+Cf0m+6 zNlme(_)@y3^hxQPl9Q5~GB{;O%J`J>l**JDDOD-8DNQM@DKzEUlv`8UQg);~n(}PQ z8!0DJen|N#<(HJ-Qck7(k#aiKnmQnLQ0kD>VW}fhN2ZQSotRphIwQ3{bwTRIsjE`g zrEX5WFZI>b{iz?Mev^7CjY-p|iD?(4jZ7PrHYROc+Jv+jY4g(>(qd@~(&A~G)3&B< zPrEDap0xYY?oZp9_E6d*X>X=|lJ<4lxA+AP%WHWZZ{W?mmG|)?pTTGG574t#!ar4*aUo6QMtHoo$EQuuifTT8piX)+TGSb)j{!b*c4Y>t)u$E?S#r)>tC+vc_TZRxg5+Zfw8+XUN0+hkjjZHleJHr;li zZGkOrYq2e|EwSBfyVZ8Pt>@Y1i6yc7r|Ho@(dq zCc9|wZXaSFW*=c6X&+^;v4`z-_Imq#dxJe@zu3OqPVFo0YwVZV*V{MQH`}+`x7+Ws zKVpB;{<8g5`|I{M><8`N*-zMiu>WNL#bI|i9d3u$;di7vG9BF@s0w= zBuB&%bu>Df9LV2ujx~;}92*^*9Ge|m9oro*J6?6X?s&uTmg61AyN*vB#~jBU zUpRhsoN|KG|E$v?7Y;u!Fhx8 zCg&~A+nigSyPUh7dz^cnPdbk{KXD#&9(R7>{L1-_^Q7}f=N~TCrFDf|HLkF$&Qw1n`?_}o9j;3-L89GJ6sRA9&|nI+U45q`owj@b=vi}8{CYWb#v|{x87}Z=eh^D z2e}8khq{NkN4Q72N4Y1t3*A%QGu^Y?bKJG=x$c;|*}crY!oAvkm3zJWI`{SNE$)5p z1MZ{lPu-unKX-rW{@VSm`+N6E5947yT93|S@T7Tso}j0@C&!cP8SNSC8Sg3ZO!5?Z ziajNsrJjpD%RMVRvS+2|QqOA7TF(QX2R#pac6oMt_IUPsp7cEJdByXZ=Y7uyo{u~S zJ%>FO%S??i9h+u~j1UF==z zZS^kmuJFp|Yd}Dm$e8s*p-z;CX?=j!wz9)Q7`JVAT=X=5TlJ6DYYrcKH zH+^sW_WR!R9q@hV``CBLcf|LJ@0jnn?+f2ozHfZr`A+zL@crcb#rK=fi3a%YTpmKL7pxo&JaXkN6+;Kjwej|AhZ3|1P7$YyWn#HlDb5h9#Mxpm^ z(@A=AdbjkU=|$;P=~tw0On)r>+4L_mbQ#u+^o+h46&V+0EXr7)abLz`8E$9xS zv%bvwI_ul4@3T&3{h0N0)~{Kovi`_Ao%MGB0-699NDAl!#z0CSEg%HU0c*e>a0c7~ zZ@?c&4`c=cfncC}pl6_W;DSJQpkJVWU|?WyU}#`?ATN*~7#$cJ7#}DIObQeRiUTEq z(!jJpMPPbhW?)vJIuHuf1j2#3Kz(3-pgFKm0*RH9B!iS9@se4xNlwWl`K1ggAa#>^ zN`0hkDOVaO4UvXRBc;*OIH^FIEEP*rrD;;7G*g-_g``@kPP#~HkQ$}9v`|_iT`aAT zR!Xa+wbJF%mC}0YI_U=KX6ZI*qtqsCmF|@8k#k7((BTj z(%aI0>3!)#>0{}TbW}PfeJ*_^eJh=iew2Qeev|%?{t7~n4JHK*!Q^0CPzYLr_Mj{1 z4f=x_!9cKEuxGGOFgutV93IRI<_E_F#|I07lY_;VZO`!zH@JCx{!&YEGolY79x?@$Xg%M>q9BX2V@xfXO{zl9}0O7eDH zDNKd(zPAseh-l2orYju!p3MRMhx(wzPDLSIPXP+4oHT0sS1MIBQ%|%g+#AS2xH1AbvJ${F?|Qez6{Lq!|9ff4B@=+4EHA`Ze+2-P1ibp(;?Umis7SI5p&b zIaPId!b$`x)_}QM@w?_zGhwMDU8%>fO86WLgg>t*4Bc2os_8QW%nv`CRz(PiQS`N@ zh=qC#(?}Ut{FYAD^#{poh2;5;GPUVD!;-cAyfZCIq~d*3d2jtBdnwWfFT{!Xw@|>7 zbvZ!Hn8Fs|fv?IZkr&fNv9&4I*TiH|ESJSmBdn6l;_056>+C1 z)>g%>qL?j;2PLsl5}O<1en}MXi}|v+R~9P|#9~=2l*OYJF;gsr#Ts}HCblOwU{cfL zo_PG1$ip#=L;JN%q<7eai7!e3g|-=rO%#6H69sHQTn&-RZV(FqRc!`OtYUorq{USM zF1A3Mcw!kY8jr)r6YEdQ;4%q=Qn0d^1IuD}T!TSKU|Gcobjn1b4W$mowYbsW1srTE z2|p$*N6Y5qceO74D<9jRb9Y6f(RmE7-LezR?zTYV+W~BWfU2ZO2R?v4|48Q6d2DDwV8>5KM#`71w=U(e2GTN#<0uZJf$K24kTFOR_<= zijcxGV$GI`BO!3HJ_7U)q?!GtWv8&ybth{>vj^9csL^DZurvc?I$mJOVICrj;eiIeZ;#-Lo_WI--- p@~ynbNnXClX-Y0~;uSc}6v!ylXJ718mo;GN-L{@$!xsMO_y<9%U3dTh diff --git a/macosx/Read Me.txt b/macosx/Read Me.txt deleted file mode 100644 index 030121023..000000000 --- a/macosx/Read Me.txt +++ /dev/null @@ -1,157 +0,0 @@ -Tux Paint Xcode 2.4 Project -notes by Martin Fuhrer - -This Tux Paint project file is located in a folder titled "macosx", which should in turn be placed in the root folder of the Tux Paint source code distribution. The project will then be able to access all the source code files. You will require at least Mac OS X 10.4 and XCode 2.4 to build this project. - -This XCode project has been configured under the assumption that you have certain libraries and files installed in particular locations under Mac OS X. This documentation indicates what you must install, and where these items go. Some of the libraries can be installed via the MacPorts or Fink package managers. At the time of writing, MacPorts can install one additional required library (SDL Pango) that is not available in Fink, so I have written this document with MacPorts in mind. Several libraries are either misconfigured (with regards to building Tux Paint) or unavailable in MacPorts and Fink, and need to be configured, compiled, and installed manually. You will also need to create the following "sandbox" directory where you will build and store these libraries: /Users/Shared/tuxpaint - -If all this configuration and compilation sounds daunting, you may also download precompiled versions of the libraries from the Tux Paint ftp server. - - --- SDL -- - -You must have the following frameworks installed in /Library/Frameworks: - -SDL.framework -SDL_image.framework -SDL_mixer.framework -SDL_ttf.framework - -You can obtain the frameworks from the SDL website These frameworks contain both header files and libraries, and are copied into the Frameworks directory of the Tux Paint application bundle. - - --- Installing Precompiled Libraries -- - -Universal, pre-compiled versions of all required libraries and header files, excluding SDL, are available for download here: -ftp://ftp.tuxpaint.org/unix/x/tuxpaint/source/libs/macosx/ - -After unzipping the package, you will have a folder named "tuxpaint" which should be placed in /Users/Shared. You may now skip the following steps and begin building Tux Paint right away. - - --- Installing Libraries via MacPorts -- - -The following libraries can be installed via MacPorts. - -Library Install location - -GNU Internationalization: /opt/local/lib/libintl.a -PNG: /opt/local/lib/libpng.a -XML Parser: /opt/local/lib/libexpat.a -Freetype: /opt/local/lib/libfreetype.a -Cairo Vector Graphics: /opt/local/lib/libcairo.a -SDL Pango: /opt/local/lib/libSDL_Pango.o - -The following MacPorts command will install all these libraries in one shot: -% sudo port install libsdl_pango - -Copy all the static libraries listed above into the /Users/Shared/tuxpaint/lib directory, where the XCode project will find them. By keeping the static libraries in a separate directory, we will ensure that Tux Paint will not link against other dynamic libraries in /opt/local/lib (a problematic scenario if you wish to distribute your compiled version of Tux Paint to friends who most likely don't have these dynamic libraries installed). These libraries will be statically linked into the Tux Paint binary. - - --- Installing Libraries Manually -- - -The following libraries require manual compilation and installation. - -Library Install location - -XML Font Configuration: /Users/Shared/tuxpaint/lib/libfontconfig.a -GLib: /Users/Shared/tuxpaint/lib/libglib-2.0.a - /Users/Shared/tuxpaint/lib/libgobject-2.0.a - /Users/Shared/tuxpaint/lib/libgmodule-2.0.a -Pango: /Users/Shared/tuxpaint/lib/libpango-1.0.a - /Users/Shared/tuxpaint/lib/libpangoft2-1.0.a -SVG Scalable Vector Graphics: /Users/Shared/tuxpaint/lib/libsvg.a -SVG Cairo: /Users/Shared/tuxpaint/lib/libsvg-cairo.a - -We will compile our libraries inside the "src" directory: /Users/Shared/tuxpaint/src -and install the libraries in the "lib" directory: /Users/Shared/tuxpaint/lib - -XML Font Configuration: - -This library will already have been built and installed by MacPorts, but will not have been properly configured for Tux Paint. We need to reconfigure and build Fontconfig as follows: - -% cd /Users/Shared/tuxpaint/src -% cp /opt/local/var/macports/distfiles/fontconfig/fontconfig*.tar.gz . -% tar xzf fontconfig*.tar.gz -% cd fontconfig* -% sudo port deactivate fontconfig -% ./configure --prefix=/Users/Shared/tuxpaint --enable-static --disable-shared --disable-docs --with-confdir="/Library/Application Support/TuxPaint/fontconfig/fonts" --with-cache-dir="/Library/Application Support/TuxPaint/fontconfig/cache" CPPFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib -% sudo make install -% sudo port activate fontconfig - -GLib: - -MacPorts only installs the dynamic libraries for GLib. We need to reconfigure and build GLib with static libraries enabled as follows: - -% cd /Users/Shared/tuxpaint/src -% cp /opt/local/var/macports/distfiles/glib/glib*.tar.gz . -% tar xzf glib*.tar.gz -% cd glib* -% sudo port deactivate glib2 -% ./configure --prefix=/Users/Shared/tuxpaint --enable-static CPPFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib -% sudo make install -% sudo port activate glib2 - -Pango: - -MacPorts only installs the dynamic libraries for Pango. We need to reconfigure and build Pango with static libraries enabled as follows: - -% cd /Users/Shared/tuxpaint/src -% cp /opt/local/var/macports/distfiles/pango/pango*.tar.bz2 . -% tar xvjf pango*.tar -% cd pango* -% sudo port deactivate pango -% ./configure --prefix=/Users/Shared/tuxpaint --enable-static CPPFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib --with-included-modules=yes --with-dynamic-modules=no --disable-shared -//EP pas de "make" ? -% sudo make install -% sudo find . -name "*.a" -exec cp {} /Users/Shared/tuxpaint/lib/ \; -% sudo port activate pango - -SVG Scalable Vector Graphics: - -Neither MacPorts nor Fink build and install the SVG library. You can retrieve sources from CVS via: -http://webcvs.cairographics.org/libsvg/ - -Assuming you place the sources in /Users/Shared/tuxpaint/src/libsvg, you can configure and build SVG as follows: - -% cd /Users/Shared/tuxpaint/src/libsvg -% ./autogen.sh -% ./configure --prefix=/Users/Shared/tuxpaint LIBSVG_CFLAGS=-I/usr/include LIBSVG_LIBS=-L/usr/lib --disable-shared -//EP pas de "make" ? -% make install - -SVG Cairo: - -Neither MacPorts nor Fink build and install the SVG Cairo library. You can retrieve sources from CVS via: -http://webcvs.cairographics.org/libsvg-cairo/ - -Assuming you place the sources in /Users/Shared/tuxpaint/src/libsvg-cairo, you can configure and build SVG Cairo as follows: - -% cd /Users/Shared/tuxpaint/src/libsvg-cairo -% ./autogen.sh -% ./configure --prefix=/Users/Shared/tuxpaint LIBSVG_CAIRO_CFLAGS=-I/Users/Shared/tuxpaint/include LIBSVG_CAIRO_LIBS=-L/Users/Shared/tuxpaint/lib --disable-shared -% make install - - --- Universal and Cross Development -- - -Tux Paint can be built for PowerPC, Intel, or both (as a universal binary). Since Tux Paint depends on a number of libraries, these libraries must also be built for the same platform(s) for which you wish to build Tux Paint. The latest versions of the SDL frameworks are universal binary and work fine regardless what platform(s) you want to build for. On the other hand, the libraries installed via MacPorts are built only for the platform you are currently using (MacPorts offers a universal build option via the +universal variant, but this does not work for all libraries). If you want to build a universal binary of Tux Paint, you will need to manually compile these libraries as universal binaries (see http://developer.apple.com/documentation/Porting/Conceptual/PortingUnix/compiling/chapter_4_section_3.html for further information) and update the library paths (click on a library in Archives and choose File > Get Info). - -To set the target platform for your build: -1) Choose Project > Edit Active Target 'Tux Paint' -2) Click the Build tab. -3) Set Configuration to "All Configurations" and Collection to "Customized Settings" -4) Select the "Architectures" setting and click the Edit button. -5) Select PowerPC, Intel, or both. - -In order to allow the Tux Paint application to run on older versions of Mac OS X, it is necessary to compile and link against an older version of the Mac OS X SDK (eg. Mac OS X 10.2.8) using an older version of gcc (eg. gcc 3.3). Various versions of the Mac OS X SDKs and gcc can be installed from the XCode Installation DVD or disk image. Note that any libraries Tux Paint links against (eg. libraries installed by MacPorts) should also be compiled and linked against the same SDK, using the same version of gcc. Universal binary and Intel applications must be compiled using at least gcc 4.0 and the Mac OS X 10.4(u) SDK. - -To set the desired Mac OS X SDK: -1) Choose Project > Edit Project Settings -2) Click on the General tab. -2) Choose the desired SDK from the "Cross-Develop Using Target SDK" menu. - -To set the desired compiler version: -1) Choose Project > Edit Active Target 'Tux Paint' -2) Click on the Rules tab. -3) Set the desired associations between file types (eg. C++ source files) and the compiler version (eg. GCC 3.3). - diff --git a/macosx/SDLMain.h b/macosx/SDLMain.h deleted file mode 100755 index 025fbc8f8..000000000 --- a/macosx/SDLMain.h +++ /dev/null @@ -1,48 +0,0 @@ -/* SDLMain.m - main entry point for our Cocoa-ized SDL app - Initial Version: Darrell Walisser - Non-NIB-Code & other changes: Max Horn - - Feel free to customize this file to suit your needs - $Id$ -*/ - -//#define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_2 -//#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_2 - -#import -#import "TransparentTextView.h" - -@ interface SDLMain:NSObject -{ - IBOutlet NSWindow *messagePanel; - IBOutlet NSTextField *messageText; - IBOutlet NSTextField *messageStatus; - IBOutlet NSProgressIndicator *messageProgress; - IBOutlet NSWindow *aboutWindow; - IBOutlet NSTextField *appnameText; - IBOutlet NSTextField *versionText; - IBOutlet TransparentTextView *acknowledgmentsText; -} - --(IBAction) onAbout:(id) sender; --(IBAction) onNew:(id) sender; --(IBAction) onOpen:(id) sender; --(IBAction) onSave:(id) sender; --(IBAction) onPrint:(id) sender; --(IBAction) onPageSetup:(id) sender; --(IBAction) onUndo:(id) sender; --(IBAction) onRedo:(id) sender; --(IBAction) onHelp:(id) sender; --(IBAction) onQuit:(id) sender; - --(void)sendSDLControlKeystroke:(int)key; --(void)sendSDLControlShiftKeystroke:(int)key; --(void)setupBridge; - --(void)displayMessage:(NSString *) - message andStatus:(NSString *) - status withProgressIndicator:(BOOL) progress; - --(void)hideMessage; - -@end diff --git a/macosx/SDLMain.m b/macosx/SDLMain.m deleted file mode 100644 index 4c564e37d..000000000 --- a/macosx/SDLMain.m +++ /dev/null @@ -1,744 +0,0 @@ -/* SDLMain.m - main entry point for our Cocoa-ized SDL app - Initial Version: Darrell Walisser - Non-NIB-Code & other changes: Max Horn - - Feel free to customize this file to suit your needs -*/ - -#import "SDL.h" -#import "SDLMain.h" -#import /* for MAXPATHLEN */ -#import - -#include -#include -#include -#include - -#import "macosx_print.h" -#import "message.h" -#import "wrapperdata.h" - -/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, -but the method still is there and works. To avoid warnings, we declare -it ourselves here. */ -@interface NSApplication(SDL_Missing_Methods) -- (void)setAppleMenu:(NSMenu *)menu; -@end - -/* Use this flag to determine whether we use SDLMain.nib or not */ -#define SDL_USE_NIB_FILE 1 - -/* Use this flag to determine whether we use CPS (docking) or not */ -#define SDL_USE_CPS 1 - -#ifdef SDL_USE_CPS -/* Portions of CPS.h */ -typedef struct CPSProcessSerNum -{ - UInt32 lo; - UInt32 hi; -} CPSProcessSerNum; - -extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); -extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); -extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); - -#endif /* SDL_USE_CPS */ - -static int gArgc; -static char **gArgv; -static BOOL gFinderLaunch; -static BOOL gCalledAppMainline = FALSE; - -WrapperData macosx; -SDLMain *sdlMain; - -static NSString *getApplicationName(void) -{ - NSDictionary *dict; - NSString *appName = 0; - - /* Determine the application name */ - dict = (NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); - if (dict) - appName = [dict objectForKey: @"CFBundleName"]; - - if (![appName length]) - appName = [[NSProcessInfo processInfo] processName]; - - return appName; -} - -#if SDL_USE_NIB_FILE -/* A helper category for NSString */ -@interface NSString (ReplaceSubString) -- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; -@end -#endif - -@interface SDLApplication : NSApplication -@end - -@implementation SDLApplication - -- (void)sendEvent:(NSEvent *)anEvent -{ - if (!macosx.cocoaKeystrokes) - { - if (NSKeyDown == [anEvent type] || NSKeyUp == [anEvent type]) - { - if( ( [anEvent modifierFlags] & NSCommandKeyMask ) == 0 ) - { - return; // do not intercept keystrokes intended for SDL layer - } - } - } - [super sendEvent: anEvent]; -} - -/* Invoked from the Quit menu item */ -- (void)terminate:(id)sender -{ - /* Post a SDL_QUIT event */ - SDL_Event event; - event.type = SDL_QUIT; - SDL_PushEvent(&event); -} - -- (void)tuxpaintHelp:(id)sender -{ - NSString* helpPath = [[NSBundle mainBundle] pathForResource:@"README" ofType:@"html" inDirectory:@"html"]; - [[NSWorkspace sharedWorkspace] openFile:helpPath]; -} -@end - - -/* Class to pass information from Cocoa to SDL application */ -@interface CocoaToSDLBridge : NSObject {} -- (void)dataPath:(NSString *)directory; -- (void)preferencesPath; -- (void)fontsPath; -@end - -@implementation CocoaToSDLBridge - --(void) dataPath:(NSString *)directory; -{ - NSBundle *mainBundle; - NSString *path; - - mainBundle = [NSBundle mainBundle]; - path = [mainBundle pathForResource:@"data" ofType:nil]; - - [path getCString:(macosx.dataPath) maxLength:sizeof(macosx.dataPath) encoding:NSUTF8StringEncoding]; //EP added maxLength: and encoding: to avoid deprecation warning for 10.6 -} - --(void) preferencesPath; -{ - NSString *path; - - path = [@"~/Library/Application Support/TuxPaint" stringByExpandingTildeInPath]; - [path getCString:(macosx.preferencesPath) maxLength:sizeof(macosx.preferencesPath) encoding:NSUTF8StringEncoding]; //EP added maxLength: and encoding: to avoid deprecation warning for 10.6 - - path = @"/Library/Application Support/TuxPaint"; - [path getCString:(macosx.globalPreferencesPath) maxLength:sizeof(macosx.globalPreferencesPath) encoding:NSUTF8StringEncoding]; //EP added maxLength: and encoding: to avoid deprecation warning for 10.6 - -} - --(void) fontsPath; -{ - NSString *path; - - path = [@"~/Library/Fonts" stringByExpandingTildeInPath]; - [path getCString:(macosx.fontsPath) maxLength:sizeof(macosx.fontsPath) encoding:NSUTF8StringEncoding]; //EP added maxLength: and encoding: to avoid deprecation warning for 10.6 -} - -@end - - -/* The main class of the application, the application's delegate */ -@implementation SDLMain - -- (IBAction) onAbout:(id)sender -{ - NSBundle *mainBundle = [NSBundle mainBundle]; - NSDictionary *bundleInfo = [mainBundle infoDictionary]; - NSMutableString *string; - NSMutableAttributedString *attributedString; - NSMutableDictionary *attributes; - - /* string attributes */ - NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy]; - [paragraphStyle setAlignment:NSCenterTextAlignment]; - attributes = [NSMutableDictionary dictionary]; - [attributes setObject:[NSFont boldSystemFontOfSize:12] forKey:NSFontAttributeName]; - [attributes setObject:paragraphStyle forKey:NSParagraphStyleAttributeName]; - [paragraphStyle release]; - - /* display Tux Paint */ - string = [bundleInfo objectForKey:@"CFBundleName"]; - attributedString = [[NSAttributedString alloc] initWithString:string attributes:attributes]; - [appnameText setAttributedStringValue:attributedString]; - [attributedString release]; - - /* display version */ - string = [NSMutableString stringWithString:@"Version "]; - [string appendString:[bundleInfo objectForKey:@"CFBundleShortVersionString"]]; - [string appendString:@" ("]; - [string appendString:[bundleInfo objectForKey:@"CFBundleVersion"]]; - [string appendString:@")"]; - [versionText setStringValue:string]; - - /* display credits */ - NSString *filePath = [mainBundle pathForResource:@"credits" ofType:@"txt"]; - string = [NSString stringWithContentsOfFile:filePath]; - [attributes setObject:[NSFont systemFontOfSize:10] forKey:NSFontAttributeName]; - attributedString = [[NSMutableAttributedString alloc] initWithString:string attributes:attributes]; - [[acknowledgmentsText textStorage] setAttributedString:attributedString]; - [attributedString release]; - [acknowledgmentsText activateURLs]; - [acknowledgmentsText setEditable:NO]; - - [aboutWindow makeKeyAndOrderFront:sender]; -} - - -- (IBAction) onNew:(id)sender -{ - [self sendSDLControlKeystroke:SDLK_n]; -} - -- (IBAction) onOpen:(id)sender -{ - [self sendSDLControlKeystroke:SDLK_o]; -} - -- (IBAction) onSave:(id)sender -{ - [self sendSDLControlKeystroke:SDLK_s]; -} - -- (IBAction) onPrint:(id)sender -{ - macosx.menuAction = 1; - [self sendSDLControlKeystroke:SDLK_p]; - macosx.menuAction = 0; -} - -- (IBAction) onPageSetup:(id)sender -{ - [self sendSDLControlShiftKeystroke:SDLK_p]; -} - -- (IBAction) onUndo:(id)sender -{ - [self sendSDLControlKeystroke:SDLK_z]; -} - -- (IBAction) onRedo:(id)sender -{ - [self sendSDLControlKeystroke:SDLK_r]; -} - -- (IBAction)onHelp:(id)sender -{ - NSString* helpPath = [[NSBundle mainBundle] pathForResource:@"README" ofType:@"html" inDirectory:@"html"]; - [[NSWorkspace sharedWorkspace] openFile:helpPath]; -} - -- (IBAction) onQuit:(id)sender -{ - [[NSUserDefaults standardUserDefaults] synchronize]; - - /* Post a SDL_QUIT event */ - SDL_Event event; - event.type = SDL_QUIT; - SDL_PushEvent(&event); -} - -- (void) sendSDLControlKeystroke:(int)key -{ - SDL_Event event; - event.type = SDL_KEYDOWN; - event.key.keysym.sym = key; - event.key.keysym.mod = KMOD_CTRL; - SDL_PushEvent(&event); -} - -- (void) sendSDLControlShiftKeystroke:(int)key -{ - SDL_Event event; - event.type = SDL_KEYDOWN; - event.key.keysym.sym = key; - event.key.keysym.mod = KMOD_CTRL | KMOD_SHIFT; - SDL_PushEvent(&event); -} - -/* Set the working directory to the .app's parent directory */ -- (void) setupWorkingDirectory:(BOOL)shouldChdir -{ - if (shouldChdir) - { - char parentdir[MAXPATHLEN]; - CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); - CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); - if (CFURLGetFileSystemRepresentation(url2, true, (UInt8 *)parentdir, MAXPATHLEN)) { - assert ( chdir (parentdir) == 0 ); /* chdir to the binary app's parent */ - } - CFRelease(url); - CFRelease(url2); - } -} - -- (void) displayMessage:(NSString*)message andStatus:(NSString*)status withProgressIndicator:(BOOL)progress -{ - [messageText setStringValue:message]; - [messageStatus setStringValue:status]; - [messagePanel makeKeyAndOrderFront:nil]; - if (progress) - { - [messageProgress setUsesThreadedAnimation:YES]; - [messageProgress startAnimation:nil]; - } -} - -- (void) hideMessage -{ - [messageProgress stopAnimation:nil]; - [messagePanel close]; -} - -#if SDL_USE_NIB_FILE - -/* Fix menu to contain the real app name instead of "SDL App" */ -- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName -{ - NSRange aRange; - NSEnumerator *enumerator; - NSMenuItem *menuItem; - - aRange = [[aMenu title] rangeOfString:@"SDL App"]; - if (aRange.length != 0) - [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; - - enumerator = [[aMenu itemArray] objectEnumerator]; - while ((menuItem = [enumerator nextObject])) - { - aRange = [[menuItem title] rangeOfString:@"SDL App"]; - if (aRange.length != 0) - [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; - if ([menuItem hasSubmenu]) - [self fixMenu:[menuItem submenu] withAppName:appName]; - } - //EP commented line to avoid deprecation warning for 10.6: [aMenu sizeToFit]; -} - -#else - -static void setApplicationMenu(void) -{ - /* warning: this code is very odd */ - NSMenu *appleMenu; - - NSMenuItem *menuItem; - NSString *title; - NSString *appName; - - appName = getApplicationName(); - appleMenu = [[NSMenu alloc] initWithTitle:@""]; - - /* Add menu items */ - title = [@"About " stringByAppendingString:appName]; - [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; - - [appleMenu addItem:[NSMenuItem separatorItem]]; - - title = [@"Hide " stringByAppendingString:appName]; - [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; - - menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; - [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; - - [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; - - [appleMenu addItem:[NSMenuItem separatorItem]]; - - title = [@"Quit " stringByAppendingString:appName]; - [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; - - /* Put menu into the menubar */ - menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; - [menuItem setSubmenu:appleMenu]; - [[NSApp mainMenu] addItem:menuItem]; - - /* Tell the application object that this is now the application menu */ - [NSApp setAppleMenu:appleMenu]; - - /* Finally give up our references to the objects */ - [appleMenu release]; - [menuItem release]; -} - -/* Create a window menu */ -static void setupWindowMenu(void) -{ - NSMenu *windowMenu; - NSMenuItem *windowMenuItem; - NSMenuItem *menuItem; - - windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; - - /* "Minimize" item */ - menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; - [windowMenu addItem:menuItem]; - [menuItem release]; - - /* Put menu into the menubar */ - windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; - [windowMenuItem setSubmenu:windowMenu]; - [[NSApp mainMenu] addItem:windowMenuItem]; - - /* Tell the application object that this is now the window menu */ - [NSApp setWindowsMenu:windowMenu]; - - /* Finally give up our references to the objects */ - [windowMenu release]; - [windowMenuItem release]; -} - -/* Create a window menu */ -static void setupHelpMenu(void) -{ - NSMenu *helpMenu; - NSMenuItem *helpMenuItem; - NSMenuItem *menuItem; - - helpMenu = [[NSMenu alloc] initWithTitle:@"Help"]; - - /* "Help" item */ - NSString *appName = getApplicationName(); - menuItem = [[NSMenuItem alloc] initWithTitle:[appName stringByAppendingString:@" Help"] action:@selector(tuxpaintHelp:) keyEquivalent:@"?"]; - [helpMenu addItem:menuItem]; - [menuItem release]; - - /* Put menu into the menubar */ - helpMenuItem = [[NSMenuItem alloc] initWithTitle:@"Help" action:nil keyEquivalent:@""]; - [helpMenuItem setSubmenu:helpMenu]; - [[NSApp mainMenu] addItem:helpMenuItem]; - - /* Finally give up our references to the objects */ - [helpMenu release]; - [helpMenuItem release]; -} - -/* Replacement for NSApplicationMain */ -static void CustomApplicationMain (argc, argv) -{ - - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - SDLMain *sdlMain; - - /* Ensure the application object is initialised */ - [SDLApplication sharedApplication]; - -#ifdef SDL_USE_CPS - { - CPSProcessSerNum PSN; - /* Tell the dock about us */ - if (!CPSGetCurrentProcess(&PSN)) - if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) - if (!CPSSetFrontProcess(&PSN)) - [SDLApplication sharedApplication]; - } -#endif /* SDL_USE_CPS */ - - /* Set up the menubar */ - [NSApp setMainMenu:[[NSMenu alloc] init]]; - setApplicationMenu(); - setupWindowMenu(); - setupHelpMenu(); - - /* Create SDLMain and make it the app delegate */ - sdlMain = [[SDLMain alloc] init]; - [NSApp setDelegate:sdlMain]; - - /* Start the main event loop */ - [NSApp run]; - - [sdlMain release]; - [pool release]; -} - -#endif - -/* Make Mac-specific information available to SDL app */ -- (void) setupBridge -{ - CocoaToSDLBridge *bridge; - bridge = [[CocoaToSDLBridge alloc] init]; - [bridge autorelease]; - [bridge fontsPath]; - [bridge preferencesPath]; -} - -- (BOOL) installFontconfigFiles -{ - NSBundle *bundle = [NSBundle mainBundle]; - NSString *executable = [bundle pathForAuxiliaryExecutable:@"fcinstaller"]; - NSString *arguments = [NSString stringWithCString:(macosx.globalPreferencesPath)]; - - char command[4096]; - //EP commented to avoid deprecation warning for 10.6: sprintf(command, "\"%s\" \"%s\"", [executable cString], [arguments cString]); - sprintf(command, "\"%@\" \"%@\"", executable, arguments); - - int result = system(command); - - return (BOOL)result; -} - -- (BOOL) installFontconfigFilesWithAuthorization -{ - OSStatus status; - AuthorizationFlags flags = kAuthorizationFlagDefaults; - AuthorizationRef authorizationRef; - NSBundle *bundle = [NSBundle mainBundle]; - - status = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment, flags, &authorizationRef); - if (status != errAuthorizationSuccess) - return status; - - AuthorizationItem items = {kAuthorizationRightExecute, 0, NULL, 0}; - AuthorizationRights rights = {1, &items}; - - flags = kAuthorizationFlagDefaults | kAuthorizationFlagInteractionAllowed | kAuthorizationFlagPreAuthorize | kAuthorizationFlagExtendRights; - status = AuthorizationCopyRights(authorizationRef, &rights, NULL, flags, NULL); - - if (status == errAuthorizationSuccess) - { - NSString *fcInstallerPath = [bundle pathForAuxiliaryExecutable:@"fcinstaller"]; - - char executable[2048]; - char *arguments[] = { "/Library/Application Support/TuxPaint", NULL }; - FILE *communicationsPipe = NULL; - - strcpy(executable, [fcInstallerPath cStringUsingEncoding:NSUTF8StringEncoding]); //EP replaced cString by cStringUsingEncoding: to avoid deprecation warning for 10.6 - - flags = kAuthorizationFlagDefaults; - status = AuthorizationExecuteWithPrivileges(authorizationRef, executable, flags, arguments, &communicationsPipe); - } - - AuthorizationFree(authorizationRef, kAuthorizationFlagDefaults); - return (status == errAuthorizationSuccess); -} - -- (BOOL) fontconfigFilesAreInstalled -{ - NSString *globalPreferencesPath = [NSString stringWithCString:(macosx.globalPreferencesPath)]; - NSString *fontsPath = [globalPreferencesPath stringByAppendingString:@"/fontconfig/fonts"]; - NSString *fontsConfInstalledPath = [fontsPath stringByAppendingString:@"/fonts.conf"]; - NSString *fontsDtdInstalledPath = [fontsPath stringByAppendingString:@"/fonts.dtd"]; - BOOL filesExist = TRUE; - - NSFileManager *fileManager = [NSFileManager defaultManager]; - filesExist = [fileManager fileExistsAtPath:fontsConfInstalledPath] && [fileManager fileExistsAtPath:fontsDtdInstalledPath]; - return filesExist; -} - -/* Set up Fontconfig */ -- (void) setupFontconfig -{ - /* Tell Fontconfig to use font configuration file in application bundle */ - setenv ("FONTCONFIG_PATH", [[[NSBundle mainBundle] resourcePath] cStringUsingEncoding:NSUTF8StringEncoding], 1); //EP replaced cString by cStringUsingEncoding: to avoid deprecation warning for 10.6 - - /* Install font configuration file */ - /* - BOOL filesExist = [self fontconfigFilesAreInstalled]; - if (!filesExist) - { - [self installFontconfigFiles]; - filesExist = [self fontconfigFilesAreInstalled]; - if (!filesExist) - { - [self installFontconfigFilesWithAuthorization]; - filesExist = [self fontconfigFilesAreInstalled]; - if (!filesExist) - exit(-1); - } - } - */ - - /* Determine if Fontconfig cache needs to be built */ - NSString *globalPreferencesPath = [NSString stringWithCString:(macosx.globalPreferencesPath)]; - NSString *globalCachePath = [globalPreferencesPath stringByAppendingString:@"/fontconfig/cache"]; - NSString *userCachePath = [[NSString stringWithString:@"~/.fontconfig"] stringByExpandingTildeInPath]; - - NSFileManager *fileManager = [NSFileManager defaultManager]; - if (![fileManager fileExistsAtPath:globalCachePath] && ![fileManager fileExistsAtPath:userCachePath]) - { - /* Build Fontconfig cache */ - displayMessage( MSG_FONT_CACHE ); - FcBool initSuccess = FcInit(); - hideMessage(); - } -} - -/* - * Catch document open requests...this lets us notice files when the app - * was launched by double-clicking a document, or when a document was - * dragged/dropped on the app's icon. You need to have a - * CFBundleDocumentsType section in your Info.plist to get this message, - * apparently. - * - * Files are added to gArgv, so to the app, they'll look like command line - * arguments. Previously, apps launched from the finder had nothing but - * an argv[0]. - * - * This message may be received multiple times to open several docs on launch. - * - * This message is ignored once the app's mainline has been called. - */ -- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename -{ - const char *temparg; - size_t arglen; - char *arg; - char **newargv; - - if (!gFinderLaunch) /* MacOS is passing command line args. */ - return FALSE; - - if (gCalledAppMainline) /* app has started, ignore this document. */ - return FALSE; - - temparg = [filename UTF8String]; - arglen = SDL_strlen(temparg) + 1; - arg = (char *) SDL_malloc(arglen); - if (arg == NULL) - return FALSE; - - newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); - if (newargv == NULL) - { - SDL_free(arg); - return FALSE; - } - gArgv = newargv; - - SDL_strlcpy(arg, temparg, arglen); - gArgv[gArgc++] = arg; - gArgv[gArgc] = NULL; - return TRUE; -} - -- (BOOL)textView:(NSTextView*)textView clickedOnLink:(id)link atIndex:(unsigned)charIndex -{ - BOOL success; - success = [[NSWorkspace sharedWorkspace] openURL: link]; - return success; -} - -/* Called when the internal event loop has just started running */ -- (void) applicationDidFinishLaunching: (NSNotification *) note -{ - int status; - sdlMain = self; - - /* Allow Cocoa events to be processed */ - setenv ("SDL_ENABLEAPPEVENTS", "1", 1); - - /* Set up Cocoa to SDL bridge */ - [self setupBridge]; - - /* Set up Fontconfig */ - [self setupFontconfig]; - - /* Set the working directory to the .app's parent directory */ - [self setupWorkingDirectory:gFinderLaunch]; - -#if SDL_USE_NIB_FILE - /* Set the main menu to contain the real app name instead of "SDL App" */ - [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; -#endif - - /* Hand off to main application code */ - gCalledAppMainline = TRUE; - status = SDL_main (gArgc, gArgv); - - /* We're done, thank you for playing */ - exit(status); -} -@end - - -@implementation NSString (ReplaceSubString) - -- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString -{ - unsigned int bufferSize; - unsigned int selfLen = [self length]; - unsigned int aStringLen = [aString length]; - unichar *buffer; - NSRange localRange; - NSString *result; - - bufferSize = selfLen + aStringLen - aRange.length; - buffer = NSAllocateMemoryPages(bufferSize*sizeof(unichar)); - - /* Get first part into buffer */ - localRange.location = 0; - localRange.length = aRange.location; - [self getCharacters:buffer range:localRange]; - - /* Get middle part into buffer */ - localRange.location = 0; - localRange.length = aStringLen; - [aString getCharacters:(buffer+aRange.location) range:localRange]; - - /* Get last part into buffer */ - localRange.location = aRange.location + aRange.length; - localRange.length = selfLen - localRange.location; - [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; - - /* Build output string */ - result = [NSString stringWithCharacters:buffer length:bufferSize]; - - NSDeallocateMemoryPages(buffer, bufferSize); - - return result; -} - -@end - -#ifdef main -# undef main -#endif - -/* Main entry point to executable - should *not* be SDL_main! */ -int main (int argc, char **argv) -{ - /* Copy the arguments into a global variable */ - /* This is passed if we are launched by double-clicking */ - if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { - gArgv = (char **) SDL_malloc(sizeof (char *) * 2); - gArgv[0] = argv[0]; - gArgv[1] = NULL; - gArgc = 1; - gFinderLaunch = YES; - } else { - int i; - gArgc = argc; - gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); - for (i = 0; i <= argc; i++) - gArgv[i] = argv[i]; - gFinderLaunch = NO; - } - -#if SDL_USE_NIB_FILE - [SDLApplication poseAsClass:[NSApplication class]]; - NSApplicationMain (argc, (const char**) argv); -#else - CustomApplicationMain (argc, argv); -#endif - return 0; -} diff --git a/macosx/TransparentTextView.h b/macosx/TransparentTextView.h deleted file mode 100644 index 0e3844854..000000000 --- a/macosx/TransparentTextView.h +++ /dev/null @@ -1,32 +0,0 @@ -// -// TransparentTextView.h -// Tux Paint -// -// Created by Martin Fuhrer on Wed Dec 12 2007. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#import - -@interface TransparentTextView : NSTextView -{ -} - -- (void)activateURLs; - -@end diff --git a/macosx/TransparentTextView.m b/macosx/TransparentTextView.m deleted file mode 100644 index 692b1942a..000000000 --- a/macosx/TransparentTextView.m +++ /dev/null @@ -1,92 +0,0 @@ -// -// TransparentTextView.m -// Tux Paint -// -// Created by Martin Fuhrer on Wed Dec 12 2007. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#import "TransparentTextView.h" - -@implementation TransparentTextView - -- (void)drawViewBackgroundInRect:(NSRect)rect -{ -} - -- (BOOL)isOpaque -{ - return NO; -} - -- (void)activateURLs -{ - NSTextStorage* textStorage = [self textStorage]; - NSString* string = [textStorage string]; - NSRange searchRange = NSMakeRange(0, [string length]); - NSRange foundRange; - - [textStorage beginEditing]; - do - { - // assume that all URLs are enclosed between < > - foundRange = [string rangeOfString:@"<" options:0 range:searchRange]; - - if (foundRange.length > 0) //Did we find a URL? - { - NSURL* theURL; - NSMutableString* theURLString; - NSDictionary* linkAttributes; - NSRange endOfURLRange, range; - - // restrict the searchRange so that it won't find the same string again - searchRange.location = foundRange.location + foundRange.length; - searchRange.length = [string length] - searchRange.location; - - // assume the URL ends with > - endOfURLRange = [string rangeOfString:@">" options:0 range:searchRange]; - - // set foundRange's length to the length of the URL - foundRange.location++; - foundRange.length = endOfURLRange.location - foundRange.location; - - // grab the URL from the text and format it properly - range = [[string substringWithRange:foundRange] rangeOfString:@"@"]; - if (range.length > 0) - theURLString = [NSMutableString stringWithString:@"mailto:"]; - else - theURLString = [NSMutableString stringWithString:@"http://"]; - [theURLString appendString:[string substringWithRange:foundRange]]; - - // generate URL - theURL = [NSURL URLWithString:theURLString]; - - // make the link attributes - linkAttributes = [NSDictionary dictionaryWithObjectsAndKeys: theURL, NSLinkAttributeName, - [NSColor blueColor], NSForegroundColorAttributeName, nil]; - - // apply those attributes to the URL in the text - [textStorage addAttributes:linkAttributes range:foundRange]; - } - } - while (foundRange.length != 0); //repeat the do block until it no longer finds anything - - [textStorage endEditing]; -} - -@end diff --git a/macosx/TuxPaint.xcodeproj/project.pbxproj b/macosx/TuxPaint.xcodeproj/project.pbxproj deleted file mode 100644 index 2f76e8773..000000000 --- a/macosx/TuxPaint.xcodeproj/project.pbxproj +++ /dev/null @@ -1,8783 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 45; - objects = { - -/* Begin PBXBuildFile section */ - 078E0CE817E292F800D9AE98 /* onscreen_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 078E0CE717E292F800D9AE98 /* onscreen_keyboard.c */; }; - 07D48B7618020EB400795B98 /* patch.c in Sources */ = {isa = PBXBuildFile; fileRef = 078E0CFC17E2A38E00D9AE98 /* patch.c */; }; - 2202639807AC5D3000C3AEAB /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2202639707AC5D3000C3AEAB /* ApplicationServices.framework */; }; - 2202646707AC603500C3AEAB /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2202646607AC603500C3AEAB /* CoreFoundation.framework */; }; - 221408D00D0D1DC7009534C6 /* credits.txt in Resources */ = {isa = PBXBuildFile; fileRef = 221408CF0D0D1DC6009534C6 /* credits.txt */; }; - 22140ABE0D110600009534C6 /* TransparentTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22140ABC0D110600009534C6 /* TransparentTextView.m */; }; - 22140B9D0D1252E5009534C6 /* speech.m in Sources */ = {isa = PBXBuildFile; fileRef = 22140B9B0D1252E4009534C6 /* speech.m */; }; - 221532C30C94825B00CDCB3B /* im.c in Sources */ = {isa = PBXBuildFile; fileRef = 221532C10C94825B00CDCB3B /* im.c */; }; - 22153A600C94C0EE00CDCB3B /* images in Resources */ = {isa = PBXBuildFile; fileRef = 221539CA0C94C0EE00CDCB3B /* images */; }; - 22153A610C94C0EE00CDCB3B /* sounds in Resources */ = {isa = PBXBuildFile; fileRef = 22153A3F0C94C0EE00CDCB3B /* sounds */; }; - 222862BE0D0B48B100CA3F84 /* message.m in Sources */ = {isa = PBXBuildFile; fileRef = 222862BC0D0B48B100CA3F84 /* message.m */; }; - 2248FC9C0CE2C797004BC461 /* tint.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC970CE2C6B5004BC461 /* tint.c */; }; - 2248FC9E0CE2C7C9004BC461 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 2248FCA10CE2C7CB004BC461 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 2248FCD10CE2C7E1004BC461 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 225789450CFAA093002EE819 /* SDL_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225789440CFAA093002EE819 /* SDL_ttf.framework */; }; - 22578CE10CFE6CCC002EE819 /* fonts.conf in Resources */ = {isa = PBXBuildFile; fileRef = 22578CDF0CFE6CC8002EE819 /* fonts.conf */; }; - 22578CE20CFE6CCC002EE819 /* fonts.dtd in Resources */ = {isa = PBXBuildFile; fileRef = 22578CE00CFE6CCB002EE819 /* fonts.dtd */; }; - 225FCE270ADF277300466C53 /* cursor.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE110ADF277300466C53 /* cursor.c */; }; - 225FCE2A0ADF277300466C53 /* dirwalk.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE140ADF277300466C53 /* dirwalk.c */; }; - 225FCE2E0ADF277300466C53 /* fonts.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE180ADF277300466C53 /* fonts.c */; }; - 225FCE2F0ADF277300466C53 /* get_fname.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE190ADF277300466C53 /* get_fname.c */; }; - 225FCE310ADF277300466C53 /* pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE1B0ADF277300466C53 /* pixels.c */; }; - 225FCE330ADF277300466C53 /* playsound.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE1D0ADF277300466C53 /* playsound.c */; }; - 225FCE350ADF277300466C53 /* progressbar.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE1F0ADF277300466C53 /* progressbar.c */; }; - 225FCE370ADF277300466C53 /* rgblinear.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE210ADF277300466C53 /* rgblinear.c */; }; - 225FCE3B0ADF277300466C53 /* i18n.c in Sources */ = {isa = PBXBuildFile; fileRef = 225FCE250ADF277300466C53 /* i18n.c */; }; - 225FD5280934EC1A00F0B02F /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 225FD5290934EC1A00F0B02F /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 225FD52B0934EC1A00F0B02F /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E96D20FFB999A00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E96D70FFB999A00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E96D80FFB999A00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E96D90FFB999A00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E96DF0FFB99DB00A9A38E /* alien.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E969D0FFB981500A9A38E /* alien.c */; }; - 226E96E70FFB9B3200A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E96EC0FFB9B3200A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E96ED0FFB9B3200A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E96EE0FFB9B3200A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97010FFB9BAE00A9A38E /* confetti.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E969E0FFB981500A9A38E /* confetti.c */; }; - 226E97040FFB9BBD00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97090FFB9BBD00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E970A0FFB9BBD00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E970B0FFB9BBD00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97140FFB9C1800A9A38E /* fisheye.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E969F0FFB981500A9A38E /* fisheye.c */; }; - 226E971A0FFB9C4E00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E971F0FFB9C4E00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97200FFB9C4E00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97210FFB9C4E00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97270FFB9C7200A9A38E /* fold.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A00FFB981500A9A38E /* fold.c */; }; - 226E972E0FFB9CB500A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97330FFB9CB500A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97340FFB9CB500A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97350FFB9CB500A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97400FFB9D1300A9A38E /* mosaic.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A10FFB981500A9A38E /* mosaic.c */; }; - 226E97480FFB9D3300A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E974D0FFB9D3300A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E974E0FFB9D3300A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E974F0FFB9D3300A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97550FFB9D7A00A9A38E /* noise.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A20FFB981500A9A38E /* noise.c */; }; - 226E975E0FFB9D9100A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97630FFB9D9100A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97640FFB9D9100A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97650FFB9D9100A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E976B0FFB9DCB00A9A38E /* rails.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A40FFB981500A9A38E /* rails.c */; }; - 226E976E0FFB9DD600A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97730FFB9DD600A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97740FFB9DD600A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97750FFB9DD600A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E977E0FFB9E2A00A9A38E /* rain.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A50FFB981500A9A38E /* rain.c */; }; - 226E97810FFB9E4000A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97860FFB9E4000A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97870FFB9E4000A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97880FFB9E4000A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97900FFB9E8A00A9A38E /* realrainbow.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A60FFB981500A9A38E /* realrainbow.c */; }; - 226E97930FFB9E9600A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97980FFB9E9600A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97990FFB9E9600A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E979A0FFB9E9600A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97A20FFB9EE600A9A38E /* rosette.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A70FFB981500A9A38E /* rosette.c */; }; - 226E97A50FFB9EEF00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97AA0FFB9EEF00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97AB0FFB9EEF00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97AC0FFB9EEF00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97B40FFB9F3300A9A38E /* sharpen.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A80FFB981500A9A38E /* sharpen.c */; }; - 226E97B70FFB9F4200A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97BC0FFB9F4200A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97BD0FFB9F4200A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97BE0FFB9F4200A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97C70FFB9F8400A9A38E /* snow.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A90FFB981500A9A38E /* snow.c */; }; - 226E97CA0FFB9F8E00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97CF0FFB9F8E00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97D00FFB9F8E00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97D10FFB9F8E00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97DB0FFB9FD100A9A38E /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96AA0FFB981500A9A38E /* string.c */; }; - 226E97DE0FFB9FEE00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97E30FFB9FEE00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97E40FFB9FEE00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97E50FFB9FEE00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E97EF0FFBA03800A9A38E /* toothpaste.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96AB0FFB981500A9A38E /* toothpaste.c */; }; - 226E97F20FFBA04000A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E97F70FFBA04000A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E97F80FFBA04000A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E97F90FFBA04000A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E98040FFBA08500A9A38E /* tornado.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96AC0FFB981500A9A38E /* tornado.c */; }; - 226E98070FFBA08F00A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E980C0FFBA08F00A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E980D0FFBA08F00A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E980E0FFBA08F00A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E98160FFBA10500A9A38E /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 226E981B0FFBA10500A9A38E /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 226E981C0FFBA10500A9A38E /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 226E981D0FFBA10500A9A38E /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 226E98240FFBA14E00A9A38E /* tv.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96AD0FFB981500A9A38E /* tv.c */; }; - 226E98250FFBA15400A9A38E /* puzzle.c in Sources */ = {isa = PBXBuildFile; fileRef = 226E96A30FFB981500A9A38E /* puzzle.c */; }; - 226E987A0FFBA41C00A9A38E /* alien.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E96DE0FFB999A00A9A38E /* alien.so */; }; - 226E987B0FFBA41C00A9A38E /* blocks_chalk_drip.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE2AF0CEFE00200D390B3 /* blocks_chalk_drip.so */; }; - 226E987C0FFBA41C00A9A38E /* blur.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3120CF0BC8F00D390B3 /* blur.so */; }; - 226E987D0FFBA41C00A9A38E /* bricks.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3450CF0C4F100D390B3 /* bricks.so */; }; - 226E987E0FFBA41C00A9A38E /* calligraphy.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE35C0CF0C7EF00D390B3 /* calligraphy.so */; }; - 226E987F0FFBA41C00A9A38E /* cartoon.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE36F0CF0C81E00D390B3 /* cartoon.so */; }; - 226E98800FFBA41C00A9A38E /* confetti.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E96F30FFB9B3200A9A38E /* confetti.so */; }; - 226E98810FFBA41C00A9A38E /* distortion.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4CB0CF0CDE200D390B3 /* distortion.so */; }; - 226E98820FFBA41C00A9A38E /* emboss.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3810CF0C89300D390B3 /* emboss.so */; }; - 226E98830FFBA41C00A9A38E /* fade_darken.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3960CF0C8E600D390B3 /* fade_darken.so */; }; - 226E98840FFBA41C00A9A38E /* fill.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3A90CF0C90600D390B3 /* fill.so */; }; - 226E98850FFBA41C00A9A38E /* fisheye.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97100FFB9BBD00A9A38E /* fisheye.so */; }; - 226E98860FFBA41C00A9A38E /* flower.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3BC0CF0C9A300D390B3 /* flower.so */; }; - 226E98870FFBA41C00A9A38E /* foam.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE3F30CF0CBDC00D390B3 /* foam.so */; }; - 226E98880FFBA41C00A9A38E /* fold.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97260FFB9C4E00A9A38E /* fold.so */; }; - 226E98890FFBA41C00A9A38E /* glasstile.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4050CF0CC0200D390B3 /* glasstile.so */; }; - 226E988A0FFBA41C00A9A38E /* grass.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4B90CF0CDA500D390B3 /* grass.so */; }; - 226E988B0FFBA41C00A9A38E /* kalidescope.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4170CF0CC2500D390B3 /* kalidescope.so */; }; - 226E988C0FFBA41C00A9A38E /* light.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4290CF0CC4C00D390B3 /* light.so */; }; - 226E988D0FFBA41C00A9A38E /* metalpaint.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4DD0CF0CE4A00D390B3 /* metalpaint.so */; }; - 226E988E0FFBA41C00A9A38E /* mirror_flip.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE43B0CF0CC6B00D390B3 /* mirror_flip.so */; }; - 226E988F0FFBA41C00A9A38E /* mosaic.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E973A0FFB9CB500A9A38E /* mosaic.so */; }; - 226E98900FFBA41C00A9A38E /* negative.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE44D0CF0CCB400D390B3 /* negative.so */; }; - 226E98910FFBA41C00A9A38E /* noise.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97540FFB9D3300A9A38E /* noise.so */; }; - 226E98920FFBA41C00A9A38E /* puzzle.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E98220FFBA10600A9A38E /* puzzle.so */; }; - 226E98930FFBA41C00A9A38E /* rails.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E976A0FFB9D9100A9A38E /* rails.so */; }; - 226E98940FFBA41C00A9A38E /* rain.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E977A0FFB9DD600A9A38E /* rain.so */; }; - 226E98950FFBA41C00A9A38E /* rainbow.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE45F0CF0CCDB00D390B3 /* rainbow.so */; }; - 226E98960FFBA41C00A9A38E /* realrainbow.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E978D0FFB9E4000A9A38E /* realrainbow.so */; }; - 226E98970FFBA41C00A9A38E /* ripples.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4710CF0CD1500D390B3 /* ripples.so */; }; - 226E98980FFBA41C00A9A38E /* rosette.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E979F0FFB9E9600A9A38E /* rosette.so */; }; - 226E98990FFBA41C00A9A38E /* sharpen.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97B10FFB9EEF00A9A38E /* sharpen.so */; }; - 226E989A0FFBA41C00A9A38E /* shift.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4830CF0CD4000D390B3 /* shift.so */; }; - 226E989B0FFBA41C00A9A38E /* smudge.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4950CF0CD6400D390B3 /* smudge.so */; }; - 226E989C0FFBA41C00A9A38E /* snow.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97C30FFB9F4200A9A38E /* snow.so */; }; - 226E989D0FFBA41C00A9A38E /* string.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97D60FFB9F8E00A9A38E /* string.so */; }; - 226E989E0FFBA41C00A9A38E /* tint.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 2248FCE30CE2CA54004BC461 /* tint.so */; }; - 226E989F0FFBA41C00A9A38E /* toothpaste.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97EA0FFB9FEE00A9A38E /* toothpaste.so */; }; - 226E98A00FFBA41C00A9A38E /* tornado.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E97FE0FFBA04000A9A38E /* tornado.so */; }; - 226E98A10FFBA41C00A9A38E /* tv.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 226E98130FFBA08F00A9A38E /* tv.so */; }; - 226E98A20FFBA41C00A9A38E /* waves.so in Copy Magic Plugins */ = {isa = PBXBuildFile; fileRef = 22ECE4A70CF0CD8600D390B3 /* waves.so */; }; - 227111800AE5EC6E00FC7FCF /* fonts in Resources */ = {isa = PBXBuildFile; fileRef = 2271114E0AE5EC6E00FC7FCF /* fonts */; }; - 2286F34F0740B3FC001164FE /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2286F34D0740B3FC001164FE /* SDLMain.nib */; }; - 22BA86D212C7C59E004C23C6 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22BA86D312C7C59E004C23C6 /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22BA86D412C7C59E004C23C6 /* SDL_mixer.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22BA86D512C7C59E004C23C6 /* SDL_ttf.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 225789440CFAA093002EE819 /* SDL_ttf.framework */; }; - 22BA872312C9643F004C23C6 /* parse.c in Sources */ = {isa = PBXBuildFile; fileRef = 22BA872212C9643F004C23C6 /* parse.c */; }; - 22C005D40736650D008555A2 /* tuxpaint.icns in Resources */ = {isa = PBXBuildFile; fileRef = 22C005D30736650D008555A2 /* tuxpaint.icns */; }; - 22C0EA9E0735B76F008555A2 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C0EA9B0735B76F008555A2 /* SDLMain.m */; }; - 22C0EABD0735B851008555A2 /* macosx_print.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C0EAAC0735B851008555A2 /* macosx_print.m */; }; - 22C0EAC40735B851008555A2 /* tuxpaint.c in Sources */ = {isa = PBXBuildFile; fileRef = 22C0EAB30735B851008555A2 /* tuxpaint.c */; }; - 22C0EDBD0735BED1008555A2 /* stamps in Resources */ = {isa = PBXBuildFile; fileRef = 22C0ED9A0735BED1008555A2 /* stamps */; }; - 22C0EDBE0735BED1008555A2 /* starters in Resources */ = {isa = PBXBuildFile; fileRef = 22C0EDAF0735BED1008555A2 /* starters */; }; - 22C0F5F60735BFA8008555A2 /* brushes in Resources */ = {isa = PBXBuildFile; fileRef = 22C0F5350735BFA8008555A2 /* brushes */; }; - 22D0201207434FD200494AE0 /* locale in Resources */ = {isa = PBXBuildFile; fileRef = 22D01F2F07434FD100494AE0 /* locale */; }; - 22ECE2B70CF01A2000D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE2B90CF01A3800D390B3 /* blocks_chalk_drip.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC830CE2C6B5004BC461 /* blocks_chalk_drip.c */; }; - 22ECE2CB0CF0B08A00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE2CE0CF0B08A00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE2D10CF0B08C00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3240CF0C35600D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3250CF0C35800D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3260CF0C35800D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3280CF0C39100D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3390CF0C4F100D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE33E0CF0C4F100D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE33F0CF0C4F100D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3400CF0C4F100D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE34B0CF0C5CE00D390B3 /* blur.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC840CE2C6B5004BC461 /* blur.c */; }; - 22ECE34C0CF0C5D400D390B3 /* bricks.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC850CE2C6B5004BC461 /* bricks.c */; }; - 22ECE3500CF0C7EF00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3550CF0C7EF00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3560CF0C7EF00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3570CF0C7EF00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE35F0CF0C81100D390B3 /* calligraphy.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC860CE2C6B5004BC461 /* calligraphy.c */; }; - 22ECE3630CF0C81E00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3680CF0C81E00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3690CF0C81E00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE36A0CF0C81E00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3750CF0C89300D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE37A0CF0C89300D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE37B0CF0C89300D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE37C0CF0C89300D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3820CF0C89D00D390B3 /* cartoon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC870CE2C6B5004BC461 /* cartoon.c */; }; - 22ECE38A0CF0C8E600D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE38F0CF0C8E600D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3900CF0C8E600D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3910CF0C8E600D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE39D0CF0C90600D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3A20CF0C90600D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3A30CF0C90600D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3A40CF0C90600D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3B00CF0C9A300D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3B50CF0C9A300D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3B60CF0C9A300D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3B70CF0C9A300D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3BE0CF0C9B000D390B3 /* emboss.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC880CE2C6B5004BC461 /* emboss.c */; }; - 22ECE3BF0CF0C9B800D390B3 /* fade_darken.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC890CE2C6B5004BC461 /* fade_darken.c */; }; - 22ECE3C00CF0C9BF00D390B3 /* fill.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8A0CE2C6B5004BC461 /* fill.c */; }; - 22ECE3C10CF0C9C800D390B3 /* flower.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8B0CE2C6B5004BC461 /* flower.c */; }; - 22ECE3E70CF0CBDC00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3EC0CF0CBDC00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3ED0CF0CBDC00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE3EE0CF0CBDC00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE3F60CF0CBF500D390B3 /* foam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8C0CE2C6B5004BC461 /* foam.c */; }; - 22ECE3F90CF0CC0100D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE3FE0CF0CC0100D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE3FF0CF0CC0100D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4000CF0CC0100D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4080CF0CC2000D390B3 /* glasstile.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8D0CE2C6B5004BC461 /* glasstile.c */; }; - 22ECE40B0CF0CC2500D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4100CF0CC2500D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4110CF0CC2500D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4120CF0CC2500D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4180CF0CC2F00D390B3 /* kalidescope.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8E0CE2C6B5004BC461 /* kalidescope.c */; }; - 22ECE41D0CF0CC4C00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4220CF0CC4C00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4230CF0CC4C00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4240CF0CC4C00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE42C0CF0CC6100D390B3 /* light.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC8F0CE2C6B5004BC461 /* light.c */; }; - 22ECE42F0CF0CC6B00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4340CF0CC6B00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4350CF0CC6B00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4360CF0CC6B00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE43E0CF0CCAC00D390B3 /* mirror_flip.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC910CE2C6B5004BC461 /* mirror_flip.c */; }; - 22ECE4410CF0CCB400D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4460CF0CCB400D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4470CF0CCB400D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4480CF0CCB400D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE44E0CF0CCBF00D390B3 /* negative.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC920CE2C6B5004BC461 /* negative.c */; }; - 22ECE4530CF0CCDB00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4580CF0CCDB00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4590CF0CCDB00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE45A0CF0CCDB00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4620CF0CD0000D390B3 /* rainbow.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC930CE2C6B5004BC461 /* rainbow.c */; }; - 22ECE4650CF0CD1500D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE46A0CF0CD1500D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE46B0CF0CD1500D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE46C0CF0CD1500D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4720CF0CD1D00D390B3 /* ripples.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC940CE2C6B5004BC461 /* ripples.c */; }; - 22ECE4770CF0CD4000D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE47C0CF0CD4000D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE47D0CF0CD4000D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE47E0CF0CD4000D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4860CF0CD5C00D390B3 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC950CE2C6B5004BC461 /* shift.c */; }; - 22ECE4890CF0CD6400D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE48E0CF0CD6400D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE48F0CF0CD6400D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4900CF0CD6400D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4960CF0CD6B00D390B3 /* smudge.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC960CE2C6B5004BC461 /* smudge.c */; }; - 22ECE49B0CF0CD8600D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4A00CF0CD8600D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4A10CF0CD8600D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4A20CF0CD8600D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4A80CF0CD9000D390B3 /* waves.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC980CE2C6B5004BC461 /* waves.c */; }; - 22ECE4AD0CF0CDA500D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4B20CF0CDA500D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4B30CF0CDA500D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4B40CF0CDA500D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4BA0CF0CDAD00D390B3 /* grass.c in Sources */ = {isa = PBXBuildFile; fileRef = 22F45E530CE4015300DB7761 /* grass.c */; }; - 22ECE4BF0CF0CDE200D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4C40CF0CDE200D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4C50CF0CDE200D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4C60CF0CDE200D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4CE0CF0CE1900D390B3 /* distortion.c in Sources */ = {isa = PBXBuildFile; fileRef = 22F45E500CE3FFE100DB7761 /* distortion.c */; }; - 22ECE4D10CF0CE4A00D390B3 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 22ECE4D60CF0CE4A00D390B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5270934EC1A00F0B02F /* SDL.framework */; }; - 22ECE4D70CF0CE4A00D390B3 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5240934EC1A00F0B02F /* SDL_image.framework */; }; - 22ECE4D80CF0CE4A00D390B3 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */; }; - 22ECE4E00CF0CE6900D390B3 /* metalpaint.c in Sources */ = {isa = PBXBuildFile; fileRef = 2248FC990CE2C707004BC461 /* metalpaint.c */; }; - 22F3EC9F0D5682620068DFB4 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22F3EC9E0D5682620068DFB4 /* Security.framework */; }; - 22F4616F0CE41B6E00DB7761 /* tp_magic_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */; }; - 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; - 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 224A386D0933E9C4005A3695 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.c; - isEditable = 1; - outputFiles = ( - ); - }; - 224A386E0933E9EF005A3695 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.asm.asm; - isEditable = 1; - outputFiles = ( - ); - }; - 225FD5360934EF5600F0B02F /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.cpp; - isEditable = 1; - outputFiles = ( - ); - }; -/* End PBXBuildRule section */ - -/* Begin PBXContainerItemProxy section */ - 226E98260FFBA24900A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4990CF0CD8600D390B3; - remoteInfo = waves; - }; - 226E98280FFBA24900A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E98050FFBA08F00A9A38E; - remoteInfo = tv; - }; - 226E982A0FFBA24900A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97F00FFBA04000A9A38E; - remoteInfo = tornado; - }; - 226E982C0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97DC0FFB9FEE00A9A38E; - remoteInfo = toothpaste; - }; - 226E982E0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2248FC700CE2C385004BC461; - remoteInfo = tint; - }; - 226E98300FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97C80FFB9F8E00A9A38E; - remoteInfo = string; - }; - 226E98320FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97B50FFB9F4200A9A38E; - remoteInfo = snow; - }; - 226E98340FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4870CF0CD6400D390B3; - remoteInfo = smudge; - }; - 226E98360FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4750CF0CD4000D390B3; - remoteInfo = shift; - }; - 226E98380FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97A30FFB9EEF00A9A38E; - remoteInfo = sharpen; - }; - 226E983A0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97910FFB9E9600A9A38E; - remoteInfo = rosette; - }; - 226E983C0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4630CF0CD1500D390B3; - remoteInfo = ripples; - }; - 226E983E0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E977F0FFB9E4000A9A38E; - remoteInfo = realrainbow; - }; - 226E98400FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4510CF0CCDB00D390B3; - remoteInfo = rainbow; - }; - 226E98420FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E976C0FFB9DD600A9A38E; - remoteInfo = rain; - }; - 226E98440FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E975C0FFB9D9100A9A38E; - remoteInfo = rails; - }; - 226E98460FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E98140FFBA10500A9A38E; - remoteInfo = puzzle; - }; - 226E98480FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97460FFB9D3300A9A38E; - remoteInfo = noise; - }; - 226E984A0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE43F0CF0CCB400D390B3; - remoteInfo = negative; - }; - 226E984C0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E972C0FFB9CB500A9A38E; - remoteInfo = mosaic; - }; - 226E984E0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE42D0CF0CC6B00D390B3; - remoteInfo = mirror_flip; - }; - 226E98500FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4CF0CF0CE4A00D390B3; - remoteInfo = metalpaint; - }; - 226E98520FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE41B0CF0CC4C00D390B3; - remoteInfo = light; - }; - 226E98540FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4090CF0CC2500D390B3; - remoteInfo = kalidescope; - }; - 226E98560FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4AB0CF0CDA500D390B3; - remoteInfo = grass; - }; - 226E98580FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3F70CF0CC0100D390B3; - remoteInfo = glasstile; - }; - 226E985A0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97180FFB9C4E00A9A38E; - remoteInfo = fold; - }; - 226E985C0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3E50CF0CBDC00D390B3; - remoteInfo = foam; - }; - 226E985E0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3AE0CF0C9A300D390B3; - remoteInfo = flower; - }; - 226E98600FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E97020FFB9BBD00A9A38E; - remoteInfo = fisheye; - }; - 226E98620FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE39B0CF0C90600D390B3; - remoteInfo = fill; - }; - 226E98640FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3880CF0C8E600D390B3; - remoteInfo = fade_darken; - }; - 226E98660FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3730CF0C89300D390B3; - remoteInfo = emboss; - }; - 226E98680FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE4BD0CF0CDE200D390B3; - remoteInfo = distortion; - }; - 226E986A0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E96E50FFB9B3200A9A38E; - remoteInfo = confetti; - }; - 226E986C0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3610CF0C81E00D390B3; - remoteInfo = cartoon; - }; - 226E986E0FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE34E0CF0C7EF00D390B3; - remoteInfo = calligraphy; - }; - 226E98700FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3370CF0C4F100D390B3; - remoteInfo = bricks; - }; - 226E98720FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE3110CF0BC8F00D390B3; - remoteInfo = blur; - }; - 226E98740FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 22ECE2AE0CEFE00200D390B3; - remoteInfo = blocks_chalk_drip; - }; - 226E98760FFBA24A00A9A38E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */; - proxyType = 1; - remoteGlobalIDString = 226E96CF0FFB999A00A9A38E; - remoteInfo = alien; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 22D5D2A80738498300B67229 /* Copy Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 8; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 22BA86D212C7C59E004C23C6 /* SDL.framework in Copy Frameworks */, - 22BA86D312C7C59E004C23C6 /* SDL_image.framework in Copy Frameworks */, - 22BA86D412C7C59E004C23C6 /* SDL_mixer.framework in Copy Frameworks */, - 22BA86D512C7C59E004C23C6 /* SDL_ttf.framework in Copy Frameworks */, - ); - name = "Copy Frameworks"; - runOnlyForDeploymentPostprocessing = 1; - }; - 22ECE5730CF0D6F000D390B3 /* Copy Magic Plugins */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = plugins; - dstSubfolderSpec = 7; - files = ( - 226E987A0FFBA41C00A9A38E /* alien.so in Copy Magic Plugins */, - 226E987B0FFBA41C00A9A38E /* blocks_chalk_drip.so in Copy Magic Plugins */, - 226E987C0FFBA41C00A9A38E /* blur.so in Copy Magic Plugins */, - 226E987D0FFBA41C00A9A38E /* bricks.so in Copy Magic Plugins */, - 226E987E0FFBA41C00A9A38E /* calligraphy.so in Copy Magic Plugins */, - 226E987F0FFBA41C00A9A38E /* cartoon.so in Copy Magic Plugins */, - 226E98800FFBA41C00A9A38E /* confetti.so in Copy Magic Plugins */, - 226E98810FFBA41C00A9A38E /* distortion.so in Copy Magic Plugins */, - 226E98820FFBA41C00A9A38E /* emboss.so in Copy Magic Plugins */, - 226E98830FFBA41C00A9A38E /* fade_darken.so in Copy Magic Plugins */, - 226E98840FFBA41C00A9A38E /* fill.so in Copy Magic Plugins */, - 226E98850FFBA41C00A9A38E /* fisheye.so in Copy Magic Plugins */, - 226E98860FFBA41C00A9A38E /* flower.so in Copy Magic Plugins */, - 226E98870FFBA41C00A9A38E /* foam.so in Copy Magic Plugins */, - 226E98880FFBA41C00A9A38E /* fold.so in Copy Magic Plugins */, - 226E98890FFBA41C00A9A38E /* glasstile.so in Copy Magic Plugins */, - 226E988A0FFBA41C00A9A38E /* grass.so in Copy Magic Plugins */, - 226E988B0FFBA41C00A9A38E /* kalidescope.so in Copy Magic Plugins */, - 226E988C0FFBA41C00A9A38E /* light.so in Copy Magic Plugins */, - 226E988D0FFBA41C00A9A38E /* metalpaint.so in Copy Magic Plugins */, - 226E988E0FFBA41C00A9A38E /* mirror_flip.so in Copy Magic Plugins */, - 226E988F0FFBA41C00A9A38E /* mosaic.so in Copy Magic Plugins */, - 226E98900FFBA41C00A9A38E /* negative.so in Copy Magic Plugins */, - 226E98910FFBA41C00A9A38E /* noise.so in Copy Magic Plugins */, - 226E98920FFBA41C00A9A38E /* puzzle.so in Copy Magic Plugins */, - 226E98930FFBA41C00A9A38E /* rails.so in Copy Magic Plugins */, - 226E98940FFBA41C00A9A38E /* rain.so in Copy Magic Plugins */, - 226E98950FFBA41C00A9A38E /* rainbow.so in Copy Magic Plugins */, - 226E98960FFBA41C00A9A38E /* realrainbow.so in Copy Magic Plugins */, - 226E98970FFBA41C00A9A38E /* ripples.so in Copy Magic Plugins */, - 226E98980FFBA41C00A9A38E /* rosette.so in Copy Magic Plugins */, - 226E98990FFBA41C00A9A38E /* sharpen.so in Copy Magic Plugins */, - 226E989A0FFBA41C00A9A38E /* shift.so in Copy Magic Plugins */, - 226E989B0FFBA41C00A9A38E /* smudge.so in Copy Magic Plugins */, - 226E989C0FFBA41C00A9A38E /* snow.so in Copy Magic Plugins */, - 226E989D0FFBA41C00A9A38E /* string.so in Copy Magic Plugins */, - 226E989E0FFBA41C00A9A38E /* tint.so in Copy Magic Plugins */, - 226E989F0FFBA41C00A9A38E /* toothpaste.so in Copy Magic Plugins */, - 226E98A00FFBA41C00A9A38E /* tornado.so in Copy Magic Plugins */, - 226E98A10FFBA41C00A9A38E /* tv.so in Copy Magic Plugins */, - 226E98A20FFBA41C00A9A38E /* waves.so in Copy Magic Plugins */, - ); - name = "Copy Magic Plugins"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 078E0CE717E292F800D9AE98 /* onscreen_keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = onscreen_keyboard.c; path = ../src/onscreen_keyboard.c; sourceTree = SOURCE_ROOT; }; - 078E0CF817E2A32200D9AE98 /* patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = patch.h; sourceTree = ""; }; - 078E0CFC17E2A38E00D9AE98 /* patch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = patch.c; sourceTree = ""; }; - 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 2202639707AC5D3000C3AEAB /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = ""; }; - 2202646607AC603500C3AEAB /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = ""; }; - 221408CF0D0D1DC6009534C6 /* credits.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = credits.txt; sourceTree = ""; }; - 22140ABB0D110600009534C6 /* TransparentTextView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TransparentTextView.h; sourceTree = ""; }; - 22140ABC0D110600009534C6 /* TransparentTextView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = TransparentTextView.m; sourceTree = ""; }; - 22140B9A0D1252E4009534C6 /* speech.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speech.h; sourceTree = ""; }; - 22140B9B0D1252E4009534C6 /* speech.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = speech.m; sourceTree = ""; }; - 221532C10C94825B00CDCB3B /* im.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = im.c; path = ../src/im.c; sourceTree = SOURCE_ROOT; }; - 221532C20C94825B00CDCB3B /* im.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = im.h; path = ../src/im.h; sourceTree = SOURCE_ROOT; }; - 221539CA0C94C0EE00CDCB3B /* images */ = {isa = PBXFileReference; lastKnownFileType = folder; name = images; path = ../data/images; sourceTree = SOURCE_ROOT; }; - 22153A3F0C94C0EE00CDCB3B /* sounds */ = {isa = PBXFileReference; lastKnownFileType = folder; name = sounds; path = ../data/sounds; sourceTree = SOURCE_ROOT; }; - 222862BB0D0B48B000CA3F84 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = ""; }; - 222862BC0D0B48B100CA3F84 /* message.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = message.m; sourceTree = ""; }; - 2248FC830CE2C6B5004BC461 /* blocks_chalk_drip.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = blocks_chalk_drip.c; path = ../magic/src/blocks_chalk_drip.c; sourceTree = SOURCE_ROOT; }; - 2248FC840CE2C6B5004BC461 /* blur.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = blur.c; path = ../magic/src/blur.c; sourceTree = SOURCE_ROOT; }; - 2248FC850CE2C6B5004BC461 /* bricks.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = bricks.c; path = ../magic/src/bricks.c; sourceTree = SOURCE_ROOT; }; - 2248FC860CE2C6B5004BC461 /* calligraphy.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = calligraphy.c; path = ../magic/src/calligraphy.c; sourceTree = SOURCE_ROOT; }; - 2248FC870CE2C6B5004BC461 /* cartoon.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cartoon.c; path = ../magic/src/cartoon.c; sourceTree = SOURCE_ROOT; }; - 2248FC880CE2C6B5004BC461 /* emboss.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = emboss.c; path = ../magic/src/emboss.c; sourceTree = SOURCE_ROOT; }; - 2248FC890CE2C6B5004BC461 /* fade_darken.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = fade_darken.c; path = ../magic/src/fade_darken.c; sourceTree = SOURCE_ROOT; }; - 2248FC8A0CE2C6B5004BC461 /* fill.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = fill.c; path = ../magic/src/fill.c; sourceTree = SOURCE_ROOT; }; - 2248FC8B0CE2C6B5004BC461 /* flower.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = flower.c; path = ../magic/src/flower.c; sourceTree = SOURCE_ROOT; }; - 2248FC8C0CE2C6B5004BC461 /* foam.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = foam.c; path = ../magic/src/foam.c; sourceTree = SOURCE_ROOT; }; - 2248FC8D0CE2C6B5004BC461 /* glasstile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = glasstile.c; path = ../magic/src/glasstile.c; sourceTree = SOURCE_ROOT; }; - 2248FC8E0CE2C6B5004BC461 /* kalidescope.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = kalidescope.c; path = ../magic/src/kalidescope.c; sourceTree = SOURCE_ROOT; }; - 2248FC8F0CE2C6B5004BC461 /* light.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = light.c; path = ../magic/src/light.c; sourceTree = SOURCE_ROOT; }; - 2248FC910CE2C6B5004BC461 /* mirror_flip.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = mirror_flip.c; path = ../magic/src/mirror_flip.c; sourceTree = SOURCE_ROOT; }; - 2248FC920CE2C6B5004BC461 /* negative.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = negative.c; path = ../magic/src/negative.c; sourceTree = SOURCE_ROOT; }; - 2248FC930CE2C6B5004BC461 /* rainbow.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rainbow.c; path = ../magic/src/rainbow.c; sourceTree = SOURCE_ROOT; }; - 2248FC940CE2C6B5004BC461 /* ripples.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ripples.c; path = ../magic/src/ripples.c; sourceTree = SOURCE_ROOT; }; - 2248FC950CE2C6B5004BC461 /* shift.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = shift.c; path = ../magic/src/shift.c; sourceTree = SOURCE_ROOT; }; - 2248FC960CE2C6B5004BC461 /* smudge.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = smudge.c; path = ../magic/src/smudge.c; sourceTree = SOURCE_ROOT; }; - 2248FC970CE2C6B5004BC461 /* tint.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tint.c; path = ../magic/src/tint.c; sourceTree = SOURCE_ROOT; }; - 2248FC980CE2C6B5004BC461 /* waves.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = waves.c; path = ../magic/src/waves.c; sourceTree = SOURCE_ROOT; }; - 2248FC990CE2C707004BC461 /* metalpaint.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = metalpaint.c; path = ../magic/src/metalpaint.c; sourceTree = SOURCE_ROOT; }; - 2248FCE30CE2CA54004BC461 /* tint.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = tint.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 225789440CFAA093002EE819 /* SDL_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_ttf.framework; path = /Library/Frameworks/SDL_ttf.framework; sourceTree = ""; }; - 22578CDF0CFE6CC8002EE819 /* fonts.conf */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; path = fonts.conf; sourceTree = ""; }; - 22578CE00CFE6CCB002EE819 /* fonts.dtd */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; path = fonts.dtd; sourceTree = ""; }; - 22581666074EE1A5005F774F /* Read Me.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Read Me.txt"; sourceTree = ""; wrapsLines = 1; }; - 225FCE100ADF277300466C53 /* compiler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = compiler.h; path = ../src/compiler.h; sourceTree = SOURCE_ROOT; }; - 225FCE110ADF277300466C53 /* cursor.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cursor.c; path = ../src/cursor.c; sourceTree = SOURCE_ROOT; }; - 225FCE120ADF277300466C53 /* cursor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cursor.h; path = ../src/cursor.h; sourceTree = SOURCE_ROOT; }; - 225FCE130ADF277300466C53 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = debug.h; path = ../src/debug.h; sourceTree = SOURCE_ROOT; }; - 225FCE140ADF277300466C53 /* dirwalk.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dirwalk.c; path = ../src/dirwalk.c; sourceTree = SOURCE_ROOT; }; - 225FCE150ADF277300466C53 /* dirwalk.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dirwalk.h; path = ../src/dirwalk.h; sourceTree = SOURCE_ROOT; }; - 225FCE180ADF277300466C53 /* fonts.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = fonts.c; path = ../src/fonts.c; sourceTree = SOURCE_ROOT; }; - 225FCE190ADF277300466C53 /* get_fname.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = get_fname.c; path = ../src/get_fname.c; sourceTree = SOURCE_ROOT; }; - 225FCE1A0ADF277300466C53 /* get_fname.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = get_fname.h; path = ../src/get_fname.h; sourceTree = SOURCE_ROOT; }; - 225FCE1B0ADF277300466C53 /* pixels.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pixels.c; path = ../src/pixels.c; sourceTree = SOURCE_ROOT; }; - 225FCE1C0ADF277300466C53 /* pixels.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = pixels.h; path = ../src/pixels.h; sourceTree = SOURCE_ROOT; }; - 225FCE1D0ADF277300466C53 /* playsound.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = playsound.c; path = ../src/playsound.c; sourceTree = SOURCE_ROOT; }; - 225FCE1E0ADF277300466C53 /* playsound.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = playsound.h; path = ../src/playsound.h; sourceTree = SOURCE_ROOT; }; - 225FCE1F0ADF277300466C53 /* progressbar.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = progressbar.c; path = ../src/progressbar.c; sourceTree = SOURCE_ROOT; }; - 225FCE200ADF277300466C53 /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = progressbar.h; path = ../src/progressbar.h; sourceTree = SOURCE_ROOT; }; - 225FCE210ADF277300466C53 /* rgblinear.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rgblinear.c; path = ../src/rgblinear.c; sourceTree = SOURCE_ROOT; }; - 225FCE220ADF277300466C53 /* rgblinear.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rgblinear.h; path = ../src/rgblinear.h; sourceTree = SOURCE_ROOT; }; - 225FCE230ADF277300466C53 /* fonts.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = fonts.h; path = ../src/fonts.h; sourceTree = SOURCE_ROOT; }; - 225FCE240ADF277300466C53 /* i18n.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = i18n.h; path = ../src/i18n.h; sourceTree = SOURCE_ROOT; }; - 225FCE250ADF277300466C53 /* i18n.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = i18n.c; path = ../src/i18n.c; sourceTree = SOURCE_ROOT; }; - 225FD5240934EC1A00F0B02F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = ""; }; - 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = ""; }; - 225FD5270934EC1A00F0B02F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; - 226E969D0FFB981500A9A38E /* alien.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = alien.c; path = ../magic/src/alien.c; sourceTree = SOURCE_ROOT; }; - 226E969E0FFB981500A9A38E /* confetti.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = confetti.c; path = ../magic/src/confetti.c; sourceTree = SOURCE_ROOT; }; - 226E969F0FFB981500A9A38E /* fisheye.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fisheye.c; path = ../magic/src/fisheye.c; sourceTree = SOURCE_ROOT; }; - 226E96A00FFB981500A9A38E /* fold.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fold.c; path = ../magic/src/fold.c; sourceTree = SOURCE_ROOT; }; - 226E96A10FFB981500A9A38E /* mosaic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mosaic.c; path = ../magic/src/mosaic.c; sourceTree = SOURCE_ROOT; }; - 226E96A20FFB981500A9A38E /* noise.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = noise.c; path = ../magic/src/noise.c; sourceTree = SOURCE_ROOT; }; - 226E96A30FFB981500A9A38E /* puzzle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = puzzle.c; path = ../magic/src/puzzle.c; sourceTree = SOURCE_ROOT; }; - 226E96A40FFB981500A9A38E /* rails.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rails.c; path = ../magic/src/rails.c; sourceTree = SOURCE_ROOT; }; - 226E96A50FFB981500A9A38E /* rain.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rain.c; path = ../magic/src/rain.c; sourceTree = SOURCE_ROOT; }; - 226E96A60FFB981500A9A38E /* realrainbow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = realrainbow.c; path = ../magic/src/realrainbow.c; sourceTree = SOURCE_ROOT; }; - 226E96A70FFB981500A9A38E /* rosette.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rosette.c; path = ../magic/src/rosette.c; sourceTree = SOURCE_ROOT; }; - 226E96A80FFB981500A9A38E /* sharpen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sharpen.c; path = ../magic/src/sharpen.c; sourceTree = SOURCE_ROOT; }; - 226E96A90FFB981500A9A38E /* snow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = snow.c; path = ../magic/src/snow.c; sourceTree = SOURCE_ROOT; }; - 226E96AA0FFB981500A9A38E /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = string.c; path = ../magic/src/string.c; sourceTree = SOURCE_ROOT; }; - 226E96AB0FFB981500A9A38E /* toothpaste.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = toothpaste.c; path = ../magic/src/toothpaste.c; sourceTree = SOURCE_ROOT; }; - 226E96AC0FFB981500A9A38E /* tornado.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tornado.c; path = ../magic/src/tornado.c; sourceTree = SOURCE_ROOT; }; - 226E96AD0FFB981500A9A38E /* tv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tv.c; path = ../magic/src/tv.c; sourceTree = SOURCE_ROOT; }; - 226E96DE0FFB999A00A9A38E /* alien.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = alien.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E96F30FFB9B3200A9A38E /* confetti.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = confetti.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97100FFB9BBD00A9A38E /* fisheye.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = fisheye.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97260FFB9C4E00A9A38E /* fold.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = fold.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E973A0FFB9CB500A9A38E /* mosaic.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = mosaic.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97540FFB9D3300A9A38E /* noise.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = noise.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E976A0FFB9D9100A9A38E /* rails.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = rails.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E977A0FFB9DD600A9A38E /* rain.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = rain.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E978D0FFB9E4000A9A38E /* realrainbow.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = realrainbow.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E979F0FFB9E9600A9A38E /* rosette.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = rosette.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97B10FFB9EEF00A9A38E /* sharpen.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = sharpen.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97C30FFB9F4200A9A38E /* snow.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = snow.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97D60FFB9F8E00A9A38E /* string.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = string.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97EA0FFB9FEE00A9A38E /* toothpaste.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = toothpaste.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E97FE0FFBA04000A9A38E /* tornado.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = tornado.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E98130FFBA08F00A9A38E /* tv.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = tv.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 226E98220FFBA10600A9A38E /* puzzle.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = puzzle.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 2271114E0AE5EC6E00FC7FCF /* fonts */ = {isa = PBXFileReference; lastKnownFileType = folder; name = fonts; path = ../fonts; sourceTree = SOURCE_ROOT; }; - 2286F34E0740B3FC001164FE /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SDLMain.nib; sourceTree = ""; }; - 22BA872212C9643F004C23C6 /* parse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = parse.c; path = ../obj/parse.c; sourceTree = SOURCE_ROOT; }; - 22C005D30736650D008555A2 /* tuxpaint.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = tuxpaint.icns; sourceTree = SOURCE_ROOT; }; - 22C0EA9A0735B76F008555A2 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; - 22C0EA9B0735B76F008555A2 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; - 22C0EA9C0735B76F008555A2 /* wrapperdata.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = wrapperdata.h; sourceTree = SOURCE_ROOT; }; - 22C0EAA30735B851008555A2 /* colors.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = colors.h; path = ../src/colors.h; sourceTree = SOURCE_ROOT; }; - 22C0EAA40735B851008555A2 /* great.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = great.h; path = ../src/great.h; sourceTree = SOURCE_ROOT; }; - 22C0EAAB0735B851008555A2 /* macosx_print.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = macosx_print.h; path = ../src/macosx_print.h; sourceTree = SOURCE_ROOT; }; - 22C0EAAC0735B851008555A2 /* macosx_print.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = macosx_print.m; path = ../src/macosx_print.m; sourceTree = SOURCE_ROOT; }; - 22C0EAAE0735B851008555A2 /* shapes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = shapes.h; path = ../src/shapes.h; sourceTree = SOURCE_ROOT; }; - 22C0EAAF0735B851008555A2 /* sounds.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sounds.h; path = ../src/sounds.h; sourceTree = SOURCE_ROOT; }; - 22C0EAB00735B851008555A2 /* tip_tux.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tip_tux.h; path = ../src/tip_tux.h; sourceTree = SOURCE_ROOT; }; - 22C0EAB10735B851008555A2 /* titles.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = titles.h; path = ../src/titles.h; sourceTree = SOURCE_ROOT; }; - 22C0EAB20735B851008555A2 /* tools.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tools.h; path = ../src/tools.h; sourceTree = SOURCE_ROOT; }; - 22C0EAB30735B851008555A2 /* tuxpaint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tuxpaint.c; path = ../src/tuxpaint.c; sourceTree = SOURCE_ROOT; }; - 22C0ED9A0735BED1008555A2 /* stamps */ = {isa = PBXFileReference; lastKnownFileType = folder; name = stamps; path = ../stamps; sourceTree = SOURCE_ROOT; }; - 22C0EDAF0735BED1008555A2 /* starters */ = {isa = PBXFileReference; lastKnownFileType = folder; name = starters; path = ../starters; sourceTree = SOURCE_ROOT; }; - 22C0F5350735BFA8008555A2 /* brushes */ = {isa = PBXFileReference; lastKnownFileType = folder; name = brushes; path = ../data/brushes; sourceTree = SOURCE_ROOT; }; - 22D01F2F07434FD100494AE0 /* locale */ = {isa = PBXFileReference; lastKnownFileType = folder; name = locale; path = ../locale; sourceTree = SOURCE_ROOT; }; - 22ECE2AF0CEFE00200D390B3 /* blocks_chalk_drip.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = blocks_chalk_drip.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3120CF0BC8F00D390B3 /* blur.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = blur.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3450CF0C4F100D390B3 /* bricks.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = bricks.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE35C0CF0C7EF00D390B3 /* calligraphy.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = calligraphy.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE36F0CF0C81E00D390B3 /* cartoon.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = cartoon.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3810CF0C89300D390B3 /* emboss.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = emboss.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3960CF0C8E600D390B3 /* fade_darken.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = fade_darken.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3A90CF0C90600D390B3 /* fill.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = fill.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3BC0CF0C9A300D390B3 /* flower.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = flower.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE3F30CF0CBDC00D390B3 /* foam.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = foam.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4050CF0CC0200D390B3 /* glasstile.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = glasstile.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4170CF0CC2500D390B3 /* kalidescope.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = kalidescope.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4290CF0CC4C00D390B3 /* light.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = light.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE43B0CF0CC6B00D390B3 /* mirror_flip.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = mirror_flip.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE44D0CF0CCB400D390B3 /* negative.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = negative.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE45F0CF0CCDB00D390B3 /* rainbow.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = rainbow.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4710CF0CD1500D390B3 /* ripples.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = ripples.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4830CF0CD4000D390B3 /* shift.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = shift.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4950CF0CD6400D390B3 /* smudge.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = smudge.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4A70CF0CD8600D390B3 /* waves.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = waves.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4B90CF0CDA500D390B3 /* grass.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = grass.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4CB0CF0CDE200D390B3 /* distortion.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = distortion.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22ECE4DD0CF0CE4A00D390B3 /* metalpaint.so */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = metalpaint.so; sourceTree = BUILT_PRODUCTS_DIR; }; - 22F3EC9E0D5682620068DFB4 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = ""; }; - 22F45B110CE3FF4D00DB7761 /* Tux Paint.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Tux Paint.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 22F45E500CE3FFE100DB7761 /* distortion.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = distortion.c; path = ../magic/src/distortion.c; sourceTree = SOURCE_ROOT; }; - 22F45E530CE4015300DB7761 /* grass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = grass.c; path = ../magic/src/grass.c; sourceTree = SOURCE_ROOT; }; - 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tp_magic_api.h; path = ../src/tp_magic_api.h; sourceTree = SOURCE_ROOT; }; - 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 2248FC6F0CE2C385004BC461 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2248FC9E0CE2C7C9004BC461 /* SDL_image.framework in Frameworks */, - 2248FCA10CE2C7CB004BC461 /* SDL.framework in Frameworks */, - 2248FCD10CE2C7E1004BC461 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96D50FFB999A00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E96D70FFB999A00A9A38E /* SDL_image.framework in Frameworks */, - 226E96D80FFB999A00A9A38E /* SDL_mixer.framework in Frameworks */, - 226E96D90FFB999A00A9A38E /* SDL.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96EA0FFB9B3200A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E96EC0FFB9B3200A9A38E /* SDL.framework in Frameworks */, - 226E96ED0FFB9B3200A9A38E /* SDL_image.framework in Frameworks */, - 226E96EE0FFB9B3200A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97070FFB9BBD00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97090FFB9BBD00A9A38E /* SDL.framework in Frameworks */, - 226E970A0FFB9BBD00A9A38E /* SDL_image.framework in Frameworks */, - 226E970B0FFB9BBD00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E971D0FFB9C4E00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E971F0FFB9C4E00A9A38E /* SDL.framework in Frameworks */, - 226E97200FFB9C4E00A9A38E /* SDL_image.framework in Frameworks */, - 226E97210FFB9C4E00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97310FFB9CB500A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97330FFB9CB500A9A38E /* SDL.framework in Frameworks */, - 226E97340FFB9CB500A9A38E /* SDL_image.framework in Frameworks */, - 226E97350FFB9CB500A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E974B0FFB9D3300A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E974D0FFB9D3300A9A38E /* SDL.framework in Frameworks */, - 226E974E0FFB9D3300A9A38E /* SDL_image.framework in Frameworks */, - 226E974F0FFB9D3300A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97610FFB9D9100A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97630FFB9D9100A9A38E /* SDL.framework in Frameworks */, - 226E97640FFB9D9100A9A38E /* SDL_image.framework in Frameworks */, - 226E97650FFB9D9100A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97710FFB9DD600A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97730FFB9DD600A9A38E /* SDL.framework in Frameworks */, - 226E97740FFB9DD600A9A38E /* SDL_image.framework in Frameworks */, - 226E97750FFB9DD600A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97840FFB9E4000A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97860FFB9E4000A9A38E /* SDL.framework in Frameworks */, - 226E97870FFB9E4000A9A38E /* SDL_image.framework in Frameworks */, - 226E97880FFB9E4000A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97960FFB9E9600A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97980FFB9E9600A9A38E /* SDL.framework in Frameworks */, - 226E97990FFB9E9600A9A38E /* SDL_image.framework in Frameworks */, - 226E979A0FFB9E9600A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97A80FFB9EEF00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97AA0FFB9EEF00A9A38E /* SDL.framework in Frameworks */, - 226E97AB0FFB9EEF00A9A38E /* SDL_image.framework in Frameworks */, - 226E97AC0FFB9EEF00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97BA0FFB9F4200A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97BC0FFB9F4200A9A38E /* SDL.framework in Frameworks */, - 226E97BD0FFB9F4200A9A38E /* SDL_image.framework in Frameworks */, - 226E97BE0FFB9F4200A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97CD0FFB9F8E00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97CF0FFB9F8E00A9A38E /* SDL.framework in Frameworks */, - 226E97D00FFB9F8E00A9A38E /* SDL_image.framework in Frameworks */, - 226E97D10FFB9F8E00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97E10FFB9FEE00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97E30FFB9FEE00A9A38E /* SDL.framework in Frameworks */, - 226E97E40FFB9FEE00A9A38E /* SDL_image.framework in Frameworks */, - 226E97E50FFB9FEE00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97F50FFBA04000A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97F70FFBA04000A9A38E /* SDL.framework in Frameworks */, - 226E97F80FFBA04000A9A38E /* SDL_image.framework in Frameworks */, - 226E97F90FFBA04000A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E980A0FFBA08F00A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E980C0FFBA08F00A9A38E /* SDL.framework in Frameworks */, - 226E980D0FFBA08F00A9A38E /* SDL_image.framework in Frameworks */, - 226E980E0FFBA08F00A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E98190FFBA10500A9A38E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E981B0FFBA10500A9A38E /* SDL.framework in Frameworks */, - 226E981C0FFBA10500A9A38E /* SDL_image.framework in Frameworks */, - 226E981D0FFBA10500A9A38E /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE2AD0CEFE00200D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE2CB0CF0B08A00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE2CE0CF0B08A00D390B3 /* SDL_mixer.framework in Frameworks */, - 22ECE2D10CF0B08C00D390B3 /* SDL.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3100CF0BC8F00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3240CF0C35600D390B3 /* SDL.framework in Frameworks */, - 22ECE3250CF0C35800D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3260CF0C35800D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE33C0CF0C4F100D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE33E0CF0C4F100D390B3 /* SDL.framework in Frameworks */, - 22ECE33F0CF0C4F100D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3400CF0C4F100D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3530CF0C7EF00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3550CF0C7EF00D390B3 /* SDL.framework in Frameworks */, - 22ECE3560CF0C7EF00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3570CF0C7EF00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3660CF0C81E00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3680CF0C81E00D390B3 /* SDL.framework in Frameworks */, - 22ECE3690CF0C81E00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE36A0CF0C81E00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3780CF0C89300D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE37A0CF0C89300D390B3 /* SDL.framework in Frameworks */, - 22ECE37B0CF0C89300D390B3 /* SDL_image.framework in Frameworks */, - 22ECE37C0CF0C89300D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE38D0CF0C8E600D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE38F0CF0C8E600D390B3 /* SDL.framework in Frameworks */, - 22ECE3900CF0C8E600D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3910CF0C8E600D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3A00CF0C90600D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3A20CF0C90600D390B3 /* SDL.framework in Frameworks */, - 22ECE3A30CF0C90600D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3A40CF0C90600D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3B30CF0C9A300D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3B50CF0C9A300D390B3 /* SDL.framework in Frameworks */, - 22ECE3B60CF0C9A300D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3B70CF0C9A300D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3EA0CF0CBDC00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3EC0CF0CBDC00D390B3 /* SDL.framework in Frameworks */, - 22ECE3ED0CF0CBDC00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE3EE0CF0CBDC00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3FC0CF0CC0100D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3FE0CF0CC0100D390B3 /* SDL.framework in Frameworks */, - 22ECE3FF0CF0CC0100D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4000CF0CC0100D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE40E0CF0CC2500D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4100CF0CC2500D390B3 /* SDL.framework in Frameworks */, - 22ECE4110CF0CC2500D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4120CF0CC2500D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4200CF0CC4C00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4220CF0CC4C00D390B3 /* SDL.framework in Frameworks */, - 22ECE4230CF0CC4C00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4240CF0CC4C00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4320CF0CC6B00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4340CF0CC6B00D390B3 /* SDL.framework in Frameworks */, - 22ECE4350CF0CC6B00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4360CF0CC6B00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4440CF0CCB400D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4460CF0CCB400D390B3 /* SDL.framework in Frameworks */, - 22ECE4470CF0CCB400D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4480CF0CCB400D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4560CF0CCDB00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4580CF0CCDB00D390B3 /* SDL.framework in Frameworks */, - 22ECE4590CF0CCDB00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE45A0CF0CCDB00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4680CF0CD1500D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE46A0CF0CD1500D390B3 /* SDL.framework in Frameworks */, - 22ECE46B0CF0CD1500D390B3 /* SDL_image.framework in Frameworks */, - 22ECE46C0CF0CD1500D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE47A0CF0CD4000D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE47C0CF0CD4000D390B3 /* SDL.framework in Frameworks */, - 22ECE47D0CF0CD4000D390B3 /* SDL_image.framework in Frameworks */, - 22ECE47E0CF0CD4000D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE48C0CF0CD6400D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE48E0CF0CD6400D390B3 /* SDL.framework in Frameworks */, - 22ECE48F0CF0CD6400D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4900CF0CD6400D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE49E0CF0CD8600D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4A00CF0CD8600D390B3 /* SDL.framework in Frameworks */, - 22ECE4A10CF0CD8600D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4A20CF0CD8600D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4B00CF0CDA500D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4B20CF0CDA500D390B3 /* SDL.framework in Frameworks */, - 22ECE4B30CF0CDA500D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4B40CF0CDA500D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4C20CF0CDE200D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4C40CF0CDE200D390B3 /* SDL.framework in Frameworks */, - 22ECE4C50CF0CDE200D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4C60CF0CDE200D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4D40CF0CE4A00D390B3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4D60CF0CE4A00D390B3 /* SDL.framework in Frameworks */, - 22ECE4D70CF0CE4A00D390B3 /* SDL_image.framework in Frameworks */, - 22ECE4D80CF0CE4A00D390B3 /* SDL_mixer.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8D11072E0486CEB800E47090 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, - 2202639807AC5D3000C3AEAB /* ApplicationServices.framework in Frameworks */, - 2202646707AC603500C3AEAB /* CoreFoundation.framework in Frameworks */, - 225FD5280934EC1A00F0B02F /* SDL_image.framework in Frameworks */, - 225FD5290934EC1A00F0B02F /* SDL_mixer.framework in Frameworks */, - 225FD52B0934EC1A00F0B02F /* SDL.framework in Frameworks */, - 225789450CFAA093002EE819 /* SDL_ttf.framework in Frameworks */, - 22F3EC9F0D5682620068DFB4 /* Security.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 080E96DDFE201D6D7F000001 /* Mac Sources */ = { - isa = PBXGroup; - children = ( - 22C0EA9A0735B76F008555A2 /* SDLMain.h */, - 22C0EA9B0735B76F008555A2 /* SDLMain.m */, - 22140ABB0D110600009534C6 /* TransparentTextView.h */, - 22140ABC0D110600009534C6 /* TransparentTextView.m */, - 22C0EAAB0735B851008555A2 /* macosx_print.h */, - 22C0EAAC0735B851008555A2 /* macosx_print.m */, - 222862BB0D0B48B000CA3F84 /* message.h */, - 222862BC0D0B48B100CA3F84 /* message.m */, - 22140B9A0D1252E4009534C6 /* speech.h */, - 22140B9B0D1252E4009534C6 /* speech.m */, - 22C0EA9C0735B76F008555A2 /* wrapperdata.h */, - 078E0CF817E2A32200D9AE98 /* patch.h */, - 078E0CFC17E2A38E00D9AE98 /* patch.c */, - ); - name = "Mac Sources"; - sourceTree = ""; - }; - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { - isa = PBXGroup; - children = ( - 22F3EC9E0D5682620068DFB4 /* Security.framework */, - 2202646607AC603500C3AEAB /* CoreFoundation.framework */, - 2202639707AC5D3000C3AEAB /* ApplicationServices.framework */, - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, - ); - name = "Linked Frameworks"; - sourceTree = ""; - }; - 1058C7A2FEA54F0111CA2CBB /* Local Frameworks */ = { - isa = PBXGroup; - children = ( - 225FD5270934EC1A00F0B02F /* SDL.framework */, - 225FD5240934EC1A00F0B02F /* SDL_image.framework */, - 225FD5250934EC1A00F0B02F /* SDL_mixer.framework */, - 225789440CFAA093002EE819 /* SDL_ttf.framework */, - ); - name = "Local Frameworks"; - sourceTree = ""; - }; - 2217B7970CD56E4E00DC1DA3 /* Shared Libraries */ = { - isa = PBXGroup; - children = ( - ); - name = "Shared Libraries"; - sourceTree = ""; - }; - 2248FC820CE2C64E004BC461 /* Magic */ = { - isa = PBXGroup; - children = ( - 226E969D0FFB981500A9A38E /* alien.c */, - 2248FC830CE2C6B5004BC461 /* blocks_chalk_drip.c */, - 2248FC840CE2C6B5004BC461 /* blur.c */, - 2248FC850CE2C6B5004BC461 /* bricks.c */, - 2248FC860CE2C6B5004BC461 /* calligraphy.c */, - 2248FC870CE2C6B5004BC461 /* cartoon.c */, - 226E969E0FFB981500A9A38E /* confetti.c */, - 22F45E500CE3FFE100DB7761 /* distortion.c */, - 2248FC880CE2C6B5004BC461 /* emboss.c */, - 2248FC890CE2C6B5004BC461 /* fade_darken.c */, - 2248FC8A0CE2C6B5004BC461 /* fill.c */, - 226E969F0FFB981500A9A38E /* fisheye.c */, - 2248FC8B0CE2C6B5004BC461 /* flower.c */, - 2248FC8C0CE2C6B5004BC461 /* foam.c */, - 226E96A00FFB981500A9A38E /* fold.c */, - 2248FC8D0CE2C6B5004BC461 /* glasstile.c */, - 22F45E530CE4015300DB7761 /* grass.c */, - 2248FC8E0CE2C6B5004BC461 /* kalidescope.c */, - 2248FC8F0CE2C6B5004BC461 /* light.c */, - 2248FC990CE2C707004BC461 /* metalpaint.c */, - 2248FC910CE2C6B5004BC461 /* mirror_flip.c */, - 226E96A10FFB981500A9A38E /* mosaic.c */, - 2248FC920CE2C6B5004BC461 /* negative.c */, - 226E96A20FFB981500A9A38E /* noise.c */, - 226E96A30FFB981500A9A38E /* puzzle.c */, - 226E96A40FFB981500A9A38E /* rails.c */, - 226E96A50FFB981500A9A38E /* rain.c */, - 2248FC930CE2C6B5004BC461 /* rainbow.c */, - 226E96A60FFB981500A9A38E /* realrainbow.c */, - 2248FC940CE2C6B5004BC461 /* ripples.c */, - 226E96A70FFB981500A9A38E /* rosette.c */, - 226E96A80FFB981500A9A38E /* sharpen.c */, - 2248FC950CE2C6B5004BC461 /* shift.c */, - 2248FC960CE2C6B5004BC461 /* smudge.c */, - 226E96A90FFB981500A9A38E /* snow.c */, - 226E96AA0FFB981500A9A38E /* string.c */, - 2248FC970CE2C6B5004BC461 /* tint.c */, - 226E96AB0FFB981500A9A38E /* toothpaste.c */, - 226E96AC0FFB981500A9A38E /* tornado.c */, - 226E96AD0FFB981500A9A38E /* tv.c */, - 2248FC980CE2C6B5004BC461 /* waves.c */, - ); - name = Magic; - sourceTree = ""; - }; - 2248FCDC0CE2C999004BC461 /* Products */ = { - isa = PBXGroup; - children = ( - 22F45B110CE3FF4D00DB7761 /* Tux Paint.app */, - 226E96DE0FFB999A00A9A38E /* alien.so */, - 22ECE2AF0CEFE00200D390B3 /* blocks_chalk_drip.so */, - 22ECE3120CF0BC8F00D390B3 /* blur.so */, - 22ECE3450CF0C4F100D390B3 /* bricks.so */, - 22ECE35C0CF0C7EF00D390B3 /* calligraphy.so */, - 22ECE36F0CF0C81E00D390B3 /* cartoon.so */, - 226E96F30FFB9B3200A9A38E /* confetti.so */, - 22ECE4CB0CF0CDE200D390B3 /* distortion.so */, - 22ECE3810CF0C89300D390B3 /* emboss.so */, - 22ECE3960CF0C8E600D390B3 /* fade_darken.so */, - 22ECE3A90CF0C90600D390B3 /* fill.so */, - 226E97100FFB9BBD00A9A38E /* fisheye.so */, - 22ECE3BC0CF0C9A300D390B3 /* flower.so */, - 22ECE3F30CF0CBDC00D390B3 /* foam.so */, - 226E97260FFB9C4E00A9A38E /* fold.so */, - 22ECE4050CF0CC0200D390B3 /* glasstile.so */, - 22ECE4B90CF0CDA500D390B3 /* grass.so */, - 22ECE4170CF0CC2500D390B3 /* kalidescope.so */, - 22ECE4290CF0CC4C00D390B3 /* light.so */, - 22ECE4DD0CF0CE4A00D390B3 /* metalpaint.so */, - 22ECE43B0CF0CC6B00D390B3 /* mirror_flip.so */, - 226E973A0FFB9CB500A9A38E /* mosaic.so */, - 22ECE44D0CF0CCB400D390B3 /* negative.so */, - 226E97540FFB9D3300A9A38E /* noise.so */, - 226E98220FFBA10600A9A38E /* puzzle.so */, - 226E976A0FFB9D9100A9A38E /* rails.so */, - 226E977A0FFB9DD600A9A38E /* rain.so */, - 22ECE45F0CF0CCDB00D390B3 /* rainbow.so */, - 226E978D0FFB9E4000A9A38E /* realrainbow.so */, - 22ECE4710CF0CD1500D390B3 /* ripples.so */, - 226E979F0FFB9E9600A9A38E /* rosette.so */, - 226E97B10FFB9EEF00A9A38E /* sharpen.so */, - 22ECE4830CF0CD4000D390B3 /* shift.so */, - 22ECE4950CF0CD6400D390B3 /* smudge.so */, - 226E97C30FFB9F4200A9A38E /* snow.so */, - 226E97D60FFB9F8E00A9A38E /* string.so */, - 2248FCE30CE2CA54004BC461 /* tint.so */, - 226E97EA0FFB9FEE00A9A38E /* toothpaste.so */, - 226E97FE0FFBA04000A9A38E /* tornado.so */, - 226E98130FFBA08F00A9A38E /* tv.so */, - 22ECE4A70CF0CD8600D390B3 /* waves.so */, - ); - name = Products; - sourceTree = ""; - }; - 22578CE30CFE6CF6002EE819 /* fontconfig */ = { - isa = PBXGroup; - children = ( - 22578CDF0CFE6CC8002EE819 /* fonts.conf */, - 22578CE00CFE6CCB002EE819 /* fonts.dtd */, - ); - name = fontconfig; - sourceTree = ""; - }; - 225FE714093AC50C00F0B02F /* Archives */ = { - isa = PBXGroup; - children = ( - ); - name = Archives; - sourceTree = ""; - }; - 22710D380AE5DEAB00FC7FCF /* docs */ = { - isa = PBXGroup; - children = ( - ); - name = docs; - path = ../docs; - sourceTree = SOURCE_ROOT; - }; - 29B97314FDCFA39411CA2CEA /* TuxPaint */ = { - isa = PBXGroup; - children = ( - 22581666074EE1A5005F774F /* Read Me.txt */, - 080E96DDFE201D6D7F000001 /* Mac Sources */, - 29B97315FDCFA39411CA2CEA /* Tux Paint Sources */, - 2248FC820CE2C64E004BC461 /* Magic */, - 29B97317FDCFA39411CA2CEA /* Resources */, - 29B97323FDCFA39411CA2CEA /* Frameworks and Archives */, - 2248FCDC0CE2C999004BC461 /* Products */, - ); - name = TuxPaint; - sourceTree = ""; - }; - 29B97315FDCFA39411CA2CEA /* Tux Paint Sources */ = { - isa = PBXGroup; - children = ( - 078E0CE717E292F800D9AE98 /* onscreen_keyboard.c */, - 225FCE110ADF277300466C53 /* cursor.c */, - 225FCE120ADF277300466C53 /* cursor.h */, - 225FCE130ADF277300466C53 /* debug.h */, - 225FCE140ADF277300466C53 /* dirwalk.c */, - 225FCE150ADF277300466C53 /* dirwalk.h */, - 225FCE180ADF277300466C53 /* fonts.c */, - 225FCE230ADF277300466C53 /* fonts.h */, - 225FCE190ADF277300466C53 /* get_fname.c */, - 225FCE1A0ADF277300466C53 /* get_fname.h */, - 225FCE250ADF277300466C53 /* i18n.c */, - 225FCE240ADF277300466C53 /* i18n.h */, - 221532C10C94825B00CDCB3B /* im.c */, - 221532C20C94825B00CDCB3B /* im.h */, - 22BA872212C9643F004C23C6 /* parse.c */, - 225FCE1B0ADF277300466C53 /* pixels.c */, - 225FCE1C0ADF277300466C53 /* pixels.h */, - 225FCE1D0ADF277300466C53 /* playsound.c */, - 225FCE1E0ADF277300466C53 /* playsound.h */, - 225FCE1F0ADF277300466C53 /* progressbar.c */, - 225FCE200ADF277300466C53 /* progressbar.h */, - 225FCE210ADF277300466C53 /* rgblinear.c */, - 225FCE220ADF277300466C53 /* rgblinear.h */, - 22C0EAB30735B851008555A2 /* tuxpaint.c */, - 22C0EAA30735B851008555A2 /* colors.h */, - 225FCE100ADF277300466C53 /* compiler.h */, - 22C0EAA40735B851008555A2 /* great.h */, - 22C0EAAE0735B851008555A2 /* shapes.h */, - 22C0EAAF0735B851008555A2 /* sounds.h */, - 22C0EAB00735B851008555A2 /* tip_tux.h */, - 22C0EAB10735B851008555A2 /* titles.h */, - 22C0EAB20735B851008555A2 /* tools.h */, - 22F4616E0CE41B6E00DB7761 /* tp_magic_api.h */, - ); - name = "Tux Paint Sources"; - sourceTree = ""; - }; - 29B97317FDCFA39411CA2CEA /* Resources */ = { - isa = PBXGroup; - children = ( - 22710D380AE5DEAB00FC7FCF /* docs */, - 22578CE30CFE6CF6002EE819 /* fontconfig */, - 221539CA0C94C0EE00CDCB3B /* images */, - 22D01F2F07434FD100494AE0 /* locale */, - 22C0F5350735BFA8008555A2 /* brushes */, - 2271114E0AE5EC6E00FC7FCF /* fonts */, - 22153A3F0C94C0EE00CDCB3B /* sounds */, - 22C0ED9A0735BED1008555A2 /* stamps */, - 22C0EDAF0735BED1008555A2 /* starters */, - 2286F34D0740B3FC001164FE /* SDLMain.nib */, - 22C005D30736650D008555A2 /* tuxpaint.icns */, - 221408CF0D0D1DC6009534C6 /* credits.txt */, - 8D1107310486CEB800E47090 /* Info.plist */, - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 29B97323FDCFA39411CA2CEA /* Frameworks and Archives */ = { - isa = PBXGroup; - children = ( - 2217B7970CD56E4E00DC1DA3 /* Shared Libraries */, - 225FE714093AC50C00F0B02F /* Archives */, - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, - 1058C7A2FEA54F0111CA2CBB /* Local Frameworks */, - ); - name = "Frameworks and Archives"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 2248FC6D0CE2C385004BC461 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22F4616F0CE41B6E00DB7761 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96D10FFB999A00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E96D20FFB999A00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96E60FFB9B3200A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E96E70FFB9B3200A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97030FFB9BBD00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97040FFB9BBD00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97190FFB9C4E00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E971A0FFB9C4E00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E972D0FFB9CB500A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E972E0FFB9CB500A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97470FFB9D3300A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97480FFB9D3300A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E975D0FFB9D9100A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E975E0FFB9D9100A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E976D0FFB9DD600A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E976E0FFB9DD600A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97800FFB9E4000A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97810FFB9E4000A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97920FFB9E9600A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97930FFB9E9600A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97A40FFB9EEF00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97A50FFB9EEF00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97B60FFB9F4200A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97B70FFB9F4200A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97C90FFB9F8E00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97CA0FFB9F8E00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97DD0FFB9FEE00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97DE0FFB9FEE00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97F10FFBA04000A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97F20FFBA04000A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E98060FFBA08F00A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E98070FFBA08F00A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E98150FFBA10500A9A38E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E98160FFBA10500A9A38E /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE2AB0CEFE00200D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE2B70CF01A2000D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE30E0CF0BC8F00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3280CF0C39100D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3380CF0C4F100D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3390CF0C4F100D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE34F0CF0C7EF00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3500CF0C7EF00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3620CF0C81E00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3630CF0C81E00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3740CF0C89300D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3750CF0C89300D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3890CF0C8E600D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE38A0CF0C8E600D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE39C0CF0C90600D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE39D0CF0C90600D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3AF0CF0C9A300D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3B00CF0C9A300D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3E60CF0CBDC00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3E70CF0CBDC00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3F80CF0CC0100D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3F90CF0CC0100D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE40A0CF0CC2500D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE40B0CF0CC2500D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE41C0CF0CC4C00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE41D0CF0CC4C00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE42E0CF0CC6B00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE42F0CF0CC6B00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4400CF0CCB400D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4410CF0CCB400D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4520CF0CCDB00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4530CF0CCDB00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4640CF0CD1500D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4650CF0CD1500D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4760CF0CD4000D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4770CF0CD4000D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4880CF0CD6400D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4890CF0CD6400D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE49A0CF0CD8600D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE49B0CF0CD8600D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4AC0CF0CDA500D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4AD0CF0CDA500D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4BE0CF0CDE200D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4BF0CF0CDE200D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4D00CF0CE4A00D390B3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4D10CF0CE4A00D390B3 /* tp_magic_api.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 2248FC700CE2C385004BC461 /* tint */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2248FC740CE2C3A4004BC461 /* Build configuration list for PBXNativeTarget "tint" */; - buildPhases = ( - 2248FC6D0CE2C385004BC461 /* Headers */, - 2248FC6E0CE2C385004BC461 /* Sources */, - 2248FC6F0CE2C385004BC461 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = tint; - productName = tint; - productReference = 2248FCE30CE2CA54004BC461 /* tint.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E96CF0FFB999A00A9A38E /* alien */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E96DA0FFB999A00A9A38E /* Build configuration list for PBXNativeTarget "alien" */; - buildPhases = ( - 226E96D00FFB999A00A9A38E /* Make Magic API */, - 226E96D10FFB999A00A9A38E /* Headers */, - 226E96D30FFB999A00A9A38E /* Sources */, - 226E96D50FFB999A00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = alien; - productName = blocks_chalk_drip; - productReference = 226E96DE0FFB999A00A9A38E /* alien.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E96E50FFB9B3200A9A38E /* confetti */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E96EF0FFB9B3200A9A38E /* Build configuration list for PBXNativeTarget "confetti" */; - buildPhases = ( - 226E96E60FFB9B3200A9A38E /* Headers */, - 226E96E80FFB9B3200A9A38E /* Sources */, - 226E96EA0FFB9B3200A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = confetti; - productName = blur; - productReference = 226E96F30FFB9B3200A9A38E /* confetti.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97020FFB9BBD00A9A38E /* fisheye */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E970C0FFB9BBD00A9A38E /* Build configuration list for PBXNativeTarget "fisheye" */; - buildPhases = ( - 226E97030FFB9BBD00A9A38E /* Headers */, - 226E97050FFB9BBD00A9A38E /* Sources */, - 226E97070FFB9BBD00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = fisheye; - productName = blur; - productReference = 226E97100FFB9BBD00A9A38E /* fisheye.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97180FFB9C4E00A9A38E /* fold */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97220FFB9C4E00A9A38E /* Build configuration list for PBXNativeTarget "fold" */; - buildPhases = ( - 226E97190FFB9C4E00A9A38E /* Headers */, - 226E971B0FFB9C4E00A9A38E /* Sources */, - 226E971D0FFB9C4E00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = fold; - productName = blur; - productReference = 226E97260FFB9C4E00A9A38E /* fold.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E972C0FFB9CB500A9A38E /* mosaic */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97360FFB9CB500A9A38E /* Build configuration list for PBXNativeTarget "mosaic" */; - buildPhases = ( - 226E972D0FFB9CB500A9A38E /* Headers */, - 226E972F0FFB9CB500A9A38E /* Sources */, - 226E97310FFB9CB500A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = mosaic; - productName = blur; - productReference = 226E973A0FFB9CB500A9A38E /* mosaic.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97460FFB9D3300A9A38E /* noise */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97500FFB9D3300A9A38E /* Build configuration list for PBXNativeTarget "noise" */; - buildPhases = ( - 226E97470FFB9D3300A9A38E /* Headers */, - 226E97490FFB9D3300A9A38E /* Sources */, - 226E974B0FFB9D3300A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = noise; - productName = blur; - productReference = 226E97540FFB9D3300A9A38E /* noise.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E975C0FFB9D9100A9A38E /* rails */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97660FFB9D9100A9A38E /* Build configuration list for PBXNativeTarget "rails" */; - buildPhases = ( - 226E975D0FFB9D9100A9A38E /* Headers */, - 226E975F0FFB9D9100A9A38E /* Sources */, - 226E97610FFB9D9100A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = rails; - productName = blur; - productReference = 226E976A0FFB9D9100A9A38E /* rails.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E976C0FFB9DD600A9A38E /* rain */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97760FFB9DD600A9A38E /* Build configuration list for PBXNativeTarget "rain" */; - buildPhases = ( - 226E976D0FFB9DD600A9A38E /* Headers */, - 226E976F0FFB9DD600A9A38E /* Sources */, - 226E97710FFB9DD600A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = rain; - productName = blur; - productReference = 226E977A0FFB9DD600A9A38E /* rain.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E977F0FFB9E4000A9A38E /* realrainbow */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97890FFB9E4000A9A38E /* Build configuration list for PBXNativeTarget "realrainbow" */; - buildPhases = ( - 226E97800FFB9E4000A9A38E /* Headers */, - 226E97820FFB9E4000A9A38E /* Sources */, - 226E97840FFB9E4000A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = realrainbow; - productName = blur; - productReference = 226E978D0FFB9E4000A9A38E /* realrainbow.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97910FFB9E9600A9A38E /* rosette */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E979B0FFB9E9600A9A38E /* Build configuration list for PBXNativeTarget "rosette" */; - buildPhases = ( - 226E97920FFB9E9600A9A38E /* Headers */, - 226E97940FFB9E9600A9A38E /* Sources */, - 226E97960FFB9E9600A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = rosette; - productName = blur; - productReference = 226E979F0FFB9E9600A9A38E /* rosette.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97A30FFB9EEF00A9A38E /* sharpen */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97AD0FFB9EEF00A9A38E /* Build configuration list for PBXNativeTarget "sharpen" */; - buildPhases = ( - 226E97A40FFB9EEF00A9A38E /* Headers */, - 226E97A60FFB9EEF00A9A38E /* Sources */, - 226E97A80FFB9EEF00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = sharpen; - productName = blur; - productReference = 226E97B10FFB9EEF00A9A38E /* sharpen.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97B50FFB9F4200A9A38E /* snow */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97BF0FFB9F4200A9A38E /* Build configuration list for PBXNativeTarget "snow" */; - buildPhases = ( - 226E97B60FFB9F4200A9A38E /* Headers */, - 226E97B80FFB9F4200A9A38E /* Sources */, - 226E97BA0FFB9F4200A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = snow; - productName = blur; - productReference = 226E97C30FFB9F4200A9A38E /* snow.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97C80FFB9F8E00A9A38E /* string */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97D20FFB9F8E00A9A38E /* Build configuration list for PBXNativeTarget "string" */; - buildPhases = ( - 226E97C90FFB9F8E00A9A38E /* Headers */, - 226E97CB0FFB9F8E00A9A38E /* Sources */, - 226E97CD0FFB9F8E00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = string; - productName = blur; - productReference = 226E97D60FFB9F8E00A9A38E /* string.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97DC0FFB9FEE00A9A38E /* toothpaste */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97E60FFB9FEE00A9A38E /* Build configuration list for PBXNativeTarget "toothpaste" */; - buildPhases = ( - 226E97DD0FFB9FEE00A9A38E /* Headers */, - 226E97DF0FFB9FEE00A9A38E /* Sources */, - 226E97E10FFB9FEE00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = toothpaste; - productName = blur; - productReference = 226E97EA0FFB9FEE00A9A38E /* toothpaste.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E97F00FFBA04000A9A38E /* tornado */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E97FA0FFBA04000A9A38E /* Build configuration list for PBXNativeTarget "tornado" */; - buildPhases = ( - 226E97F10FFBA04000A9A38E /* Headers */, - 226E97F30FFBA04000A9A38E /* Sources */, - 226E97F50FFBA04000A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = tornado; - productName = blur; - productReference = 226E97FE0FFBA04000A9A38E /* tornado.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E98050FFBA08F00A9A38E /* tv */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E980F0FFBA08F00A9A38E /* Build configuration list for PBXNativeTarget "tv" */; - buildPhases = ( - 226E98060FFBA08F00A9A38E /* Headers */, - 226E98080FFBA08F00A9A38E /* Sources */, - 226E980A0FFBA08F00A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = tv; - productName = blur; - productReference = 226E98130FFBA08F00A9A38E /* tv.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 226E98140FFBA10500A9A38E /* puzzle */ = { - isa = PBXNativeTarget; - buildConfigurationList = 226E981E0FFBA10500A9A38E /* Build configuration list for PBXNativeTarget "puzzle" */; - buildPhases = ( - 226E98150FFBA10500A9A38E /* Headers */, - 226E98170FFBA10500A9A38E /* Sources */, - 226E98190FFBA10500A9A38E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = puzzle; - productName = blur; - productReference = 226E98220FFBA10600A9A38E /* puzzle.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE2AE0CEFE00200D390B3 /* blocks_chalk_drip */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE2B30CEFE00900D390B3 /* Build configuration list for PBXNativeTarget "blocks_chalk_drip" */; - buildPhases = ( - 22ECE2AB0CEFE00200D390B3 /* Headers */, - 22ECE2AC0CEFE00200D390B3 /* Sources */, - 22ECE2AD0CEFE00200D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = blocks_chalk_drip; - productName = blocks_chalk_drip; - productReference = 22ECE2AF0CEFE00200D390B3 /* blocks_chalk_drip.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3110CF0BC8F00D390B3 /* blur */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3190CF0BC9B00D390B3 /* Build configuration list for PBXNativeTarget "blur" */; - buildPhases = ( - 22ECE30E0CF0BC8F00D390B3 /* Headers */, - 22ECE30F0CF0BC8F00D390B3 /* Sources */, - 22ECE3100CF0BC8F00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = blur; - productName = blur; - productReference = 22ECE3120CF0BC8F00D390B3 /* blur.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3370CF0C4F100D390B3 /* bricks */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3410CF0C4F100D390B3 /* Build configuration list for PBXNativeTarget "bricks" */; - buildPhases = ( - 22ECE3380CF0C4F100D390B3 /* Headers */, - 22ECE33A0CF0C4F100D390B3 /* Sources */, - 22ECE33C0CF0C4F100D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = bricks; - productName = blur; - productReference = 22ECE3450CF0C4F100D390B3 /* bricks.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE34E0CF0C7EF00D390B3 /* calligraphy */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3580CF0C7EF00D390B3 /* Build configuration list for PBXNativeTarget "calligraphy" */; - buildPhases = ( - 22ECE34F0CF0C7EF00D390B3 /* Headers */, - 22ECE3510CF0C7EF00D390B3 /* Sources */, - 22ECE3530CF0C7EF00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = calligraphy; - productName = blur; - productReference = 22ECE35C0CF0C7EF00D390B3 /* calligraphy.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3610CF0C81E00D390B3 /* cartoon */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE36B0CF0C81E00D390B3 /* Build configuration list for PBXNativeTarget "cartoon" */; - buildPhases = ( - 22ECE3620CF0C81E00D390B3 /* Headers */, - 22ECE3640CF0C81E00D390B3 /* Sources */, - 22ECE3660CF0C81E00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = cartoon; - productName = blur; - productReference = 22ECE36F0CF0C81E00D390B3 /* cartoon.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3730CF0C89300D390B3 /* emboss */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE37D0CF0C89300D390B3 /* Build configuration list for PBXNativeTarget "emboss" */; - buildPhases = ( - 22ECE3740CF0C89300D390B3 /* Headers */, - 22ECE3760CF0C89300D390B3 /* Sources */, - 22ECE3780CF0C89300D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = emboss; - productName = blur; - productReference = 22ECE3810CF0C89300D390B3 /* emboss.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3880CF0C8E600D390B3 /* fade_darken */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3920CF0C8E600D390B3 /* Build configuration list for PBXNativeTarget "fade_darken" */; - buildPhases = ( - 22ECE3890CF0C8E600D390B3 /* Headers */, - 22ECE38B0CF0C8E600D390B3 /* Sources */, - 22ECE38D0CF0C8E600D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = fade_darken; - productName = blur; - productReference = 22ECE3960CF0C8E600D390B3 /* fade_darken.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE39B0CF0C90600D390B3 /* fill */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3A50CF0C90600D390B3 /* Build configuration list for PBXNativeTarget "fill" */; - buildPhases = ( - 22ECE39C0CF0C90600D390B3 /* Headers */, - 22ECE39E0CF0C90600D390B3 /* Sources */, - 22ECE3A00CF0C90600D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = fill; - productName = blur; - productReference = 22ECE3A90CF0C90600D390B3 /* fill.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3AE0CF0C9A300D390B3 /* flower */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3B80CF0C9A300D390B3 /* Build configuration list for PBXNativeTarget "flower" */; - buildPhases = ( - 22ECE3AF0CF0C9A300D390B3 /* Headers */, - 22ECE3B10CF0C9A300D390B3 /* Sources */, - 22ECE3B30CF0C9A300D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = flower; - productName = blur; - productReference = 22ECE3BC0CF0C9A300D390B3 /* flower.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3E50CF0CBDC00D390B3 /* foam */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE3EF0CF0CBDC00D390B3 /* Build configuration list for PBXNativeTarget "foam" */; - buildPhases = ( - 22ECE3E60CF0CBDC00D390B3 /* Headers */, - 22ECE3E80CF0CBDC00D390B3 /* Sources */, - 22ECE3EA0CF0CBDC00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = foam; - productName = blur; - productReference = 22ECE3F30CF0CBDC00D390B3 /* foam.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE3F70CF0CC0100D390B3 /* glasstile */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4010CF0CC0100D390B3 /* Build configuration list for PBXNativeTarget "glasstile" */; - buildPhases = ( - 22ECE3F80CF0CC0100D390B3 /* Headers */, - 22ECE3FA0CF0CC0100D390B3 /* Sources */, - 22ECE3FC0CF0CC0100D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = glasstile; - productName = blur; - productReference = 22ECE4050CF0CC0200D390B3 /* glasstile.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4090CF0CC2500D390B3 /* kalidescope */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4130CF0CC2500D390B3 /* Build configuration list for PBXNativeTarget "kalidescope" */; - buildPhases = ( - 22ECE40A0CF0CC2500D390B3 /* Headers */, - 22ECE40C0CF0CC2500D390B3 /* Sources */, - 22ECE40E0CF0CC2500D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = kalidescope; - productName = blur; - productReference = 22ECE4170CF0CC2500D390B3 /* kalidescope.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE41B0CF0CC4C00D390B3 /* light */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4250CF0CC4C00D390B3 /* Build configuration list for PBXNativeTarget "light" */; - buildPhases = ( - 22ECE41C0CF0CC4C00D390B3 /* Headers */, - 22ECE41E0CF0CC4C00D390B3 /* Sources */, - 22ECE4200CF0CC4C00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = light; - productName = blur; - productReference = 22ECE4290CF0CC4C00D390B3 /* light.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE42D0CF0CC6B00D390B3 /* mirror_flip */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4370CF0CC6B00D390B3 /* Build configuration list for PBXNativeTarget "mirror_flip" */; - buildPhases = ( - 22ECE42E0CF0CC6B00D390B3 /* Headers */, - 22ECE4300CF0CC6B00D390B3 /* Sources */, - 22ECE4320CF0CC6B00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = mirror_flip; - productName = blur; - productReference = 22ECE43B0CF0CC6B00D390B3 /* mirror_flip.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE43F0CF0CCB400D390B3 /* negative */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4490CF0CCB400D390B3 /* Build configuration list for PBXNativeTarget "negative" */; - buildPhases = ( - 22ECE4400CF0CCB400D390B3 /* Headers */, - 22ECE4420CF0CCB400D390B3 /* Sources */, - 22ECE4440CF0CCB400D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = negative; - productName = blur; - productReference = 22ECE44D0CF0CCB400D390B3 /* negative.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4510CF0CCDB00D390B3 /* rainbow */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE45B0CF0CCDB00D390B3 /* Build configuration list for PBXNativeTarget "rainbow" */; - buildPhases = ( - 22ECE4520CF0CCDB00D390B3 /* Headers */, - 22ECE4540CF0CCDB00D390B3 /* Sources */, - 22ECE4560CF0CCDB00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = rainbow; - productName = blur; - productReference = 22ECE45F0CF0CCDB00D390B3 /* rainbow.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4630CF0CD1500D390B3 /* ripples */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE46D0CF0CD1500D390B3 /* Build configuration list for PBXNativeTarget "ripples" */; - buildPhases = ( - 22ECE4640CF0CD1500D390B3 /* Headers */, - 22ECE4660CF0CD1500D390B3 /* Sources */, - 22ECE4680CF0CD1500D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ripples; - productName = blur; - productReference = 22ECE4710CF0CD1500D390B3 /* ripples.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4750CF0CD4000D390B3 /* shift */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE47F0CF0CD4000D390B3 /* Build configuration list for PBXNativeTarget "shift" */; - buildPhases = ( - 22ECE4760CF0CD4000D390B3 /* Headers */, - 22ECE4780CF0CD4000D390B3 /* Sources */, - 22ECE47A0CF0CD4000D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = shift; - productName = blur; - productReference = 22ECE4830CF0CD4000D390B3 /* shift.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4870CF0CD6400D390B3 /* smudge */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4910CF0CD6400D390B3 /* Build configuration list for PBXNativeTarget "smudge" */; - buildPhases = ( - 22ECE4880CF0CD6400D390B3 /* Headers */, - 22ECE48A0CF0CD6400D390B3 /* Sources */, - 22ECE48C0CF0CD6400D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = smudge; - productName = blur; - productReference = 22ECE4950CF0CD6400D390B3 /* smudge.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4990CF0CD8600D390B3 /* waves */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4A30CF0CD8600D390B3 /* Build configuration list for PBXNativeTarget "waves" */; - buildPhases = ( - 22ECE49A0CF0CD8600D390B3 /* Headers */, - 22ECE49C0CF0CD8600D390B3 /* Sources */, - 22ECE49E0CF0CD8600D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = waves; - productName = blur; - productReference = 22ECE4A70CF0CD8600D390B3 /* waves.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4AB0CF0CDA500D390B3 /* grass */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4B50CF0CDA500D390B3 /* Build configuration list for PBXNativeTarget "grass" */; - buildPhases = ( - 22ECE4AC0CF0CDA500D390B3 /* Headers */, - 22ECE4AE0CF0CDA500D390B3 /* Sources */, - 22ECE4B00CF0CDA500D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = grass; - productName = blur; - productReference = 22ECE4B90CF0CDA500D390B3 /* grass.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4BD0CF0CDE200D390B3 /* distortion */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4C70CF0CDE200D390B3 /* Build configuration list for PBXNativeTarget "distortion" */; - buildPhases = ( - 22ECE4BE0CF0CDE200D390B3 /* Headers */, - 22ECE4C00CF0CDE200D390B3 /* Sources */, - 22ECE4C20CF0CDE200D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = distortion; - productName = blur; - productReference = 22ECE4CB0CF0CDE200D390B3 /* distortion.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 22ECE4CF0CF0CE4A00D390B3 /* metalpaint */ = { - isa = PBXNativeTarget; - buildConfigurationList = 22ECE4D90CF0CE4A00D390B3 /* Build configuration list for PBXNativeTarget "metalpaint" */; - buildPhases = ( - 22ECE4D00CF0CE4A00D390B3 /* Headers */, - 22ECE4D20CF0CE4A00D390B3 /* Sources */, - 22ECE4D40CF0CE4A00D390B3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = metalpaint; - productName = blur; - productReference = 22ECE4DD0CF0CE4A00D390B3 /* metalpaint.so */; - productType = "com.apple.product-type.library.dynamic"; - }; - 8D1107260486CEB800E47090 /* Tux Paint */ = { - isa = PBXNativeTarget; - buildConfigurationList = 224A35F709339642005A3695 /* Build configuration list for PBXNativeTarget "Tux Paint" */; - buildPhases = ( - 22ECE6710CF1233400D390B3 /* Magic Resources */, - EEDBBD40097A27A2004F0C27 /* Make Translations */, - 8D1107290486CEB800E47090 /* Resources */, - 227111870AE5ED2700FC7FCF /* Copy TrueType Fonts */, - 2248FB460CDE56D0004BC461 /* Remove Bundled Libraries */, - 22BA86F112C9600F004C23C6 /* Generate Parser */, - 8D11072C0486CEB800E47090 /* Sources */, - 8D11072E0486CEB800E47090 /* Frameworks */, - 22D5D2A80738498300B67229 /* Copy Frameworks */, - 22ECE5730CF0D6F000D390B3 /* Copy Magic Plugins */, - 2217B7D50CD6F6C400DC1DA3 /* Update Library Install Paths */, - 07F673B1182205EA001A514D /* Make Optional Customization */, - ); - buildRules = ( - 225FD5360934EF5600F0B02F /* PBXBuildRule */, - 224A386E0933E9EF005A3695 /* PBXBuildRule */, - 224A386D0933E9C4005A3695 /* PBXBuildRule */, - ); - dependencies = ( - 226E98770FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98750FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98730FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98710FFBA24A00A9A38E /* PBXTargetDependency */, - 226E986F0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E986D0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E986B0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98690FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98670FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98650FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98630FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98610FFBA24A00A9A38E /* PBXTargetDependency */, - 226E985F0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E985D0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E985B0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98590FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98570FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98550FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98530FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98510FFBA24A00A9A38E /* PBXTargetDependency */, - 226E984F0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E984D0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E984B0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98490FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98470FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98450FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98430FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98410FFBA24A00A9A38E /* PBXTargetDependency */, - 226E983F0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E983D0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E983B0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98390FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98370FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98350FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98330FFBA24A00A9A38E /* PBXTargetDependency */, - 226E98310FFBA24A00A9A38E /* PBXTargetDependency */, - 226E982F0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E982D0FFBA24A00A9A38E /* PBXTargetDependency */, - 226E982B0FFBA24900A9A38E /* PBXTargetDependency */, - 226E98290FFBA24900A9A38E /* PBXTargetDependency */, - 226E98270FFBA24900A9A38E /* PBXTargetDependency */, - ); - name = "Tux Paint"; - productInstallPath = "$(HOME)/Applications"; - productName = TuxPaint; - productReference = 22F45B110CE3FF4D00DB7761 /* Tux Paint.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 224A35FB09339642005A3695 /* Build configuration list for PBXProject "TuxPaint" */; - compatibilityVersion = "Xcode 3.1"; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 29B97314FDCFA39411CA2CEA /* TuxPaint */; - productRefGroup = 2248FCDC0CE2C999004BC461 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8D1107260486CEB800E47090 /* Tux Paint */, - 226E96CF0FFB999A00A9A38E /* alien */, - 22ECE2AE0CEFE00200D390B3 /* blocks_chalk_drip */, - 22ECE3110CF0BC8F00D390B3 /* blur */, - 22ECE3370CF0C4F100D390B3 /* bricks */, - 22ECE34E0CF0C7EF00D390B3 /* calligraphy */, - 22ECE3610CF0C81E00D390B3 /* cartoon */, - 226E96E50FFB9B3200A9A38E /* confetti */, - 22ECE4BD0CF0CDE200D390B3 /* distortion */, - 22ECE3730CF0C89300D390B3 /* emboss */, - 22ECE3880CF0C8E600D390B3 /* fade_darken */, - 22ECE39B0CF0C90600D390B3 /* fill */, - 226E97020FFB9BBD00A9A38E /* fisheye */, - 22ECE3AE0CF0C9A300D390B3 /* flower */, - 22ECE3E50CF0CBDC00D390B3 /* foam */, - 226E97180FFB9C4E00A9A38E /* fold */, - 22ECE3F70CF0CC0100D390B3 /* glasstile */, - 22ECE4AB0CF0CDA500D390B3 /* grass */, - 22ECE4090CF0CC2500D390B3 /* kalidescope */, - 22ECE41B0CF0CC4C00D390B3 /* light */, - 22ECE4CF0CF0CE4A00D390B3 /* metalpaint */, - 22ECE42D0CF0CC6B00D390B3 /* mirror_flip */, - 226E972C0FFB9CB500A9A38E /* mosaic */, - 22ECE43F0CF0CCB400D390B3 /* negative */, - 226E97460FFB9D3300A9A38E /* noise */, - 226E98140FFBA10500A9A38E /* puzzle */, - 226E975C0FFB9D9100A9A38E /* rails */, - 226E976C0FFB9DD600A9A38E /* rain */, - 22ECE4510CF0CCDB00D390B3 /* rainbow */, - 226E977F0FFB9E4000A9A38E /* realrainbow */, - 22ECE4630CF0CD1500D390B3 /* ripples */, - 226E97910FFB9E9600A9A38E /* rosette */, - 226E97A30FFB9EEF00A9A38E /* sharpen */, - 22ECE4750CF0CD4000D390B3 /* shift */, - 22ECE4870CF0CD6400D390B3 /* smudge */, - 226E97B50FFB9F4200A9A38E /* snow */, - 226E97C80FFB9F8E00A9A38E /* string */, - 2248FC700CE2C385004BC461 /* tint */, - 226E97DC0FFB9FEE00A9A38E /* toothpaste */, - 226E97F00FFBA04000A9A38E /* tornado */, - 226E98050FFBA08F00A9A38E /* tv */, - 22ECE4990CF0CD8600D390B3 /* waves */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8D1107290486CEB800E47090 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, - 22C0EDBD0735BED1008555A2 /* stamps in Resources */, - 22C0EDBE0735BED1008555A2 /* starters in Resources */, - 22C0F5F60735BFA8008555A2 /* brushes in Resources */, - 22C005D40736650D008555A2 /* tuxpaint.icns in Resources */, - 2286F34F0740B3FC001164FE /* SDLMain.nib in Resources */, - 22D0201207434FD200494AE0 /* locale in Resources */, - 227111800AE5EC6E00FC7FCF /* fonts in Resources */, - 22153A600C94C0EE00CDCB3B /* images in Resources */, - 22153A610C94C0EE00CDCB3B /* sounds in Resources */, - 22578CE10CFE6CCC002EE819 /* fonts.conf in Resources */, - 22578CE20CFE6CCC002EE819 /* fonts.dtd in Resources */, - 221408D00D0D1DC7009534C6 /* credits.txt in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 07F673B1182205EA001A514D /* Make Optional Customization */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Make Optional Customization"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# added in version 0.9.22 //EP\n# By placing an optional script in the custom folder it is possible to customize the target\n# If the script is found it is called otherwise there is no customization\n\nexport PATH=\"${BUILT_PRODUCTS_DIR}/../../../custom\"\nexport SCRIPT=\"./macosx.sh\"\n\nDONE=0\nif [ -d $PATH ];\nthen\n\tcd $PATH\n\tif [ -f $SCRIPT ];\n\tthen\n\t\techo Custom script \"$SCRIPT\" found\n\t\t\"$SCRIPT\"\n\t\techo \"Customization done\"\n\t\tDONE=1\n\tfi\nfi\n\nif [ $DONE != 1 ]\nthen\n\techo \"No customization requested\"\nfi\n\n"; - }; - 2217B7D50CD6F6C400DC1DA3 /* Update Library Install Paths */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Update Library Install Paths"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# added in version 0.9.22 //EP\nexport APP=\"${BUILT_PRODUCTS_DIR}/${TARGET_NAME}.app\"\nexport EXE=\"$APP/Contents/MacOS/${TARGET_NAME}\"\nexport DST=\"$APP/Contents/Frameworks\"\n\nupdate_framework()\n{\nFRM=$1\nFRMFILE=$FRM.framework/Versions/A/$FRM\nFRMSRC=/Library/Frameworks/$FRMFILE\ncp -p \"$FRMSRC\" \"$DST\"\n#install_name_tool -id \"@executable_path/../Frameworks/$FRM\" \"$DST/$FRMFILE\"\ninstall_name_tool -change \"@rpath/$FRMFILE\" \"@executable_path/../Frameworks/$FRM\" \"$EXE\"\necho Updated framework $FRM\n}\n\nupdate_sibling_framework()\n{\nFRM=$1\nFRMFILE=$FRM.framework/Versions/A/$FRM\nFRMSRC=/Library/Frameworks/$FRMFILE\nmkdir -p \"`dirname \"$DST/$FRMFILE\"`\"\ncp -p \"$FRMSRC\" \"`dirname \"$DST/$FRMFILE\"`\"\necho Updated sibling framework $FRM\n}\n\nupdate_embedded_framework()\n{\nFRM=$1\nFRMFILE=$FRM.framework/Versions/A/$FRM\nFRMSRC=/Library/Frameworks/$FRMFILE\nSUB=$2\nSUBFILE=$SUB.framework/Versions/A/$SUB\nSUBSRC=\"`dirname \"$FRMSRC\"`/Frameworks/$SUBFILE\"\nmkdir -p \"`dirname \"$DST/$SUBFILE\"`\"\ncp -p \"$SUBSRC\" \"`dirname \"$DST/$SUBFILE\"`\"\necho Updated embedded framework $FRM/$SUB\n}\n\necho Embedding frameworks into $APP\necho Executable is $EXE\necho Frameworks folder is $DST\n\nupdate_sibling_framework SDL\n\n#update_framework SDL_image\nupdate_sibling_framework SDL_image\nupdate_embedded_framework SDL_image webp\n\nupdate_sibling_framework SDL_mixer\nupdate_embedded_framework SDL_mixer mikmod\nupdate_embedded_framework SDL_mixer smpeg\nupdate_embedded_framework SDL_mixer Ogg\nupdate_embedded_framework SDL_mixer Vorbis\nupdate_embedded_framework SDL_mixer FLAC\n\nupdate_sibling_framework SDL_ttf\nupdate_embedded_framework SDL_ttf FreeType\n\nexit\n\n# previous version that came with Tux Paint (everything below was commented)\n# space separated list of libraries\nEXECFILE=${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\n#LIBPATH=${BUILT_PRODUCTS_DIR}/${SHARED_SUPPORT_FOLDER_PATH}\n#NEWLIBPATH=\"@executable_path/../SharedSupport\"\nTARGETS=`ls -1 \"${LIBPATH}\"` \nfor TARGET in ${TARGETS} ; do\n\tLIBFILE=${LIBPATH}/${TARGET}\n\tTARGETID=`otool -DX \"${LIBPATH}/$TARGET\"`\n\tNEWTARGETID=${NEWLIBPATH}/${TARGET}\n#\tinstall_name_tool -id ${NEWTARGETID} \"${LIBFILE}\"\n\techo \"install_name_tool -id ${NEWTARGETID} ${LIBFILE}\"\n#\tinstall_name_tool -change ${TARGETID} ${NEWTARGETID} \"${EXECFILE}\"\n\techo \"install_name_tool -change ${TARGETID} ${NEWTARGETID} ${EXECFILE}\"\n for TARGET2 in ${TARGETS}; do\n\t\tLIBFILE2=${LIBPATH}/${TARGET2}\n#\t\tinstall_name_tool -change ${TARGETID} ${NEWTARGETID} \"${LIBFILE2}\"\n\techo \"install_name_tool -change ${TARGETID} ${NEWTARGETID} ${LIBFILE2}\"\n\tdone\ndone"; - }; - 2248FB460CDE56D0004BC461 /* Remove Bundled Libraries */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Remove Bundled Libraries"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "#LIBPATH=${BUILT_PRODUCTS_DIR}/${SHARED_SUPPORT_FOLDER_PATH}\n\n#TARGETS=`ls -1 \"${LIBPATH}\"` \n#for TARGET in ${TARGETS} ; do\n#\tLIBFILE=${LIBPATH}/${TARGET}\n#\trm \"${LIBFILE}\"\n#done\n"; - }; - 226E96D00FFB999A00A9A38E /* Make Magic API */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/../src/tp_magic_api.h.in", - ); - name = "Make Magic API"; - outputPaths = ( - "$(SRCROOT)/../src/tp_magic_api.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd ..\nmake src/tp_magic_api.h"; - }; - 227111870AE5ED2700FC7FCF /* Copy TrueType Fonts */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy TrueType Fonts"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "FONTS_RESOURCES_PATH=$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH/fonts/\nTTF_FONTS_PATH=../data/fonts\ncp -R $TTF_FONTS_PATH/* \"$FONTS_RESOURCES_PATH\"\nexit 0\n"; - }; - 22BA86F112C9600F004C23C6 /* Generate Parser */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/parse.gperf", - ); - name = "Generate Parser"; - outputPaths = ( - "$(DERIVED_FILE_DIR)/parse.c", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "gperf \"${PROJECT_DIR}/../src/parse.gperf\" > \"${PROJECT_DIR}/../obj/parse_step1.c\"\nsed -e 's/^const struct/static const struct/' -e 's/_GNU/_TUX/' \"${PROJECT_DIR}/../obj/parse_step1.c\" > \"${PROJECT_DIR}/../obj/parse.c\"\n"; - }; - 22ECE6710CF1233400D390B3 /* Magic Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Magic Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd ..\nrsync -auv --cvs-exclude \"${PROJECT_DIR}/../magic/icons/\" \"${PROJECT_DIR}/../data/images/magic\"\nrsync -auv --cvs-exclude \"${PROJECT_DIR}/../magic/sounds/\" \"${PROJECT_DIR}/../data/sounds/magic\""; - }; - EEDBBD40097A27A2004F0C27 /* Make Translations */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - comments = "Generates locale folder\n"; - files = ( - ); - inputPaths = ( - ); - name = "Make Translations"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/zsh; - shellScript = "# set path to msgfmt command in MacPorts or Fink\nPATH=/opt/local/bin:/sw/bin/:$PATH\n\ncd ..\n{\n\tmake translations\n} always {\n\techo 'Did you get an error complaining that the msgfmt command was not found? If so, please install the \"gettext\" package via MacPorts or Fink.'\n}\nmake LOCALE_PREFIX=./locale install-gettext"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 2248FC6E0CE2C385004BC461 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2248FC9C0CE2C797004BC461 /* tint.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96D30FFB999A00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E96DF0FFB99DB00A9A38E /* alien.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E96E80FFB9B3200A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97010FFB9BAE00A9A38E /* confetti.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97050FFB9BBD00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97140FFB9C1800A9A38E /* fisheye.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E971B0FFB9C4E00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97270FFB9C7200A9A38E /* fold.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E972F0FFB9CB500A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97400FFB9D1300A9A38E /* mosaic.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97490FFB9D3300A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97550FFB9D7A00A9A38E /* noise.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E975F0FFB9D9100A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E976B0FFB9DCB00A9A38E /* rails.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E976F0FFB9DD600A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E977E0FFB9E2A00A9A38E /* rain.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97820FFB9E4000A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97900FFB9E8A00A9A38E /* realrainbow.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97940FFB9E9600A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97A20FFB9EE600A9A38E /* rosette.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97A60FFB9EEF00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97B40FFB9F3300A9A38E /* sharpen.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97B80FFB9F4200A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97C70FFB9F8400A9A38E /* snow.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97CB0FFB9F8E00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97DB0FFB9FD100A9A38E /* string.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97DF0FFB9FEE00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E97EF0FFBA03800A9A38E /* toothpaste.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E97F30FFBA04000A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E98040FFBA08500A9A38E /* tornado.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E98080FFBA08F00A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E98240FFBA14E00A9A38E /* tv.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 226E98170FFBA10500A9A38E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 226E98250FFBA15400A9A38E /* puzzle.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE2AC0CEFE00200D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE2B90CF01A3800D390B3 /* blocks_chalk_drip.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE30F0CF0BC8F00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE34B0CF0C5CE00D390B3 /* blur.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE33A0CF0C4F100D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE34C0CF0C5D400D390B3 /* bricks.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3510CF0C7EF00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE35F0CF0C81100D390B3 /* calligraphy.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3640CF0C81E00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3820CF0C89D00D390B3 /* cartoon.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3760CF0C89300D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3BE0CF0C9B000D390B3 /* emboss.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE38B0CF0C8E600D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3BF0CF0C9B800D390B3 /* fade_darken.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE39E0CF0C90600D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3C00CF0C9BF00D390B3 /* fill.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3B10CF0C9A300D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3C10CF0C9C800D390B3 /* flower.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3E80CF0CBDC00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE3F60CF0CBF500D390B3 /* foam.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE3FA0CF0CC0100D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4080CF0CC2000D390B3 /* glasstile.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE40C0CF0CC2500D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4180CF0CC2F00D390B3 /* kalidescope.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE41E0CF0CC4C00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE42C0CF0CC6100D390B3 /* light.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4300CF0CC6B00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE43E0CF0CCAC00D390B3 /* mirror_flip.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4420CF0CCB400D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE44E0CF0CCBF00D390B3 /* negative.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4540CF0CCDB00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4620CF0CD0000D390B3 /* rainbow.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4660CF0CD1500D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4720CF0CD1D00D390B3 /* ripples.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4780CF0CD4000D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4860CF0CD5C00D390B3 /* shift.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE48A0CF0CD6400D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4960CF0CD6B00D390B3 /* smudge.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE49C0CF0CD8600D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4A80CF0CD9000D390B3 /* waves.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4AE0CF0CDA500D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4BA0CF0CDAD00D390B3 /* grass.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4C00CF0CDE200D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4CE0CF0CE1900D390B3 /* distortion.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22ECE4D20CF0CE4A00D390B3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22ECE4E00CF0CE6900D390B3 /* metalpaint.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8D11072C0486CEB800E47090 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 22C0EA9E0735B76F008555A2 /* SDLMain.m in Sources */, - 22C0EABD0735B851008555A2 /* macosx_print.m in Sources */, - 22C0EAC40735B851008555A2 /* tuxpaint.c in Sources */, - 225FCE270ADF277300466C53 /* cursor.c in Sources */, - 225FCE2A0ADF277300466C53 /* dirwalk.c in Sources */, - 225FCE2E0ADF277300466C53 /* fonts.c in Sources */, - 225FCE2F0ADF277300466C53 /* get_fname.c in Sources */, - 225FCE310ADF277300466C53 /* pixels.c in Sources */, - 225FCE330ADF277300466C53 /* playsound.c in Sources */, - 225FCE350ADF277300466C53 /* progressbar.c in Sources */, - 225FCE370ADF277300466C53 /* rgblinear.c in Sources */, - 225FCE3B0ADF277300466C53 /* i18n.c in Sources */, - 221532C30C94825B00CDCB3B /* im.c in Sources */, - 222862BE0D0B48B100CA3F84 /* message.m in Sources */, - 22140ABE0D110600009534C6 /* TransparentTextView.m in Sources */, - 22140B9D0D1252E5009534C6 /* speech.m in Sources */, - 22BA872312C9643F004C23C6 /* parse.c in Sources */, - 078E0CE817E292F800D9AE98 /* onscreen_keyboard.c in Sources */, - 07D48B7618020EB400795B98 /* patch.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 226E98270FFBA24900A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4990CF0CD8600D390B3 /* waves */; - targetProxy = 226E98260FFBA24900A9A38E /* PBXContainerItemProxy */; - }; - 226E98290FFBA24900A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E98050FFBA08F00A9A38E /* tv */; - targetProxy = 226E98280FFBA24900A9A38E /* PBXContainerItemProxy */; - }; - 226E982B0FFBA24900A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97F00FFBA04000A9A38E /* tornado */; - targetProxy = 226E982A0FFBA24900A9A38E /* PBXContainerItemProxy */; - }; - 226E982D0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97DC0FFB9FEE00A9A38E /* toothpaste */; - targetProxy = 226E982C0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E982F0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2248FC700CE2C385004BC461 /* tint */; - targetProxy = 226E982E0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98310FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97C80FFB9F8E00A9A38E /* string */; - targetProxy = 226E98300FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98330FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97B50FFB9F4200A9A38E /* snow */; - targetProxy = 226E98320FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98350FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4870CF0CD6400D390B3 /* smudge */; - targetProxy = 226E98340FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98370FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4750CF0CD4000D390B3 /* shift */; - targetProxy = 226E98360FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98390FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97A30FFB9EEF00A9A38E /* sharpen */; - targetProxy = 226E98380FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E983B0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97910FFB9E9600A9A38E /* rosette */; - targetProxy = 226E983A0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E983D0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4630CF0CD1500D390B3 /* ripples */; - targetProxy = 226E983C0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E983F0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E977F0FFB9E4000A9A38E /* realrainbow */; - targetProxy = 226E983E0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98410FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4510CF0CCDB00D390B3 /* rainbow */; - targetProxy = 226E98400FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98430FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E976C0FFB9DD600A9A38E /* rain */; - targetProxy = 226E98420FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98450FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E975C0FFB9D9100A9A38E /* rails */; - targetProxy = 226E98440FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98470FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E98140FFBA10500A9A38E /* puzzle */; - targetProxy = 226E98460FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98490FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97460FFB9D3300A9A38E /* noise */; - targetProxy = 226E98480FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E984B0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE43F0CF0CCB400D390B3 /* negative */; - targetProxy = 226E984A0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E984D0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E972C0FFB9CB500A9A38E /* mosaic */; - targetProxy = 226E984C0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E984F0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE42D0CF0CC6B00D390B3 /* mirror_flip */; - targetProxy = 226E984E0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98510FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4CF0CF0CE4A00D390B3 /* metalpaint */; - targetProxy = 226E98500FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98530FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE41B0CF0CC4C00D390B3 /* light */; - targetProxy = 226E98520FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98550FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4090CF0CC2500D390B3 /* kalidescope */; - targetProxy = 226E98540FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98570FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4AB0CF0CDA500D390B3 /* grass */; - targetProxy = 226E98560FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98590FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3F70CF0CC0100D390B3 /* glasstile */; - targetProxy = 226E98580FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E985B0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97180FFB9C4E00A9A38E /* fold */; - targetProxy = 226E985A0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E985D0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3E50CF0CBDC00D390B3 /* foam */; - targetProxy = 226E985C0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E985F0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3AE0CF0C9A300D390B3 /* flower */; - targetProxy = 226E985E0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98610FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E97020FFB9BBD00A9A38E /* fisheye */; - targetProxy = 226E98600FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98630FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE39B0CF0C90600D390B3 /* fill */; - targetProxy = 226E98620FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98650FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3880CF0C8E600D390B3 /* fade_darken */; - targetProxy = 226E98640FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98670FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3730CF0C89300D390B3 /* emboss */; - targetProxy = 226E98660FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98690FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE4BD0CF0CDE200D390B3 /* distortion */; - targetProxy = 226E98680FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E986B0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E96E50FFB9B3200A9A38E /* confetti */; - targetProxy = 226E986A0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E986D0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3610CF0C81E00D390B3 /* cartoon */; - targetProxy = 226E986C0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E986F0FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE34E0CF0C7EF00D390B3 /* calligraphy */; - targetProxy = 226E986E0FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98710FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3370CF0C4F100D390B3 /* bricks */; - targetProxy = 226E98700FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98730FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE3110CF0BC8F00D390B3 /* blur */; - targetProxy = 226E98720FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98750FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 22ECE2AE0CEFE00200D390B3 /* blocks_chalk_drip */; - targetProxy = 226E98740FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; - 226E98770FFBA24A00A9A38E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 226E96CF0FFB999A00A9A38E /* alien */; - targetProxy = 226E98760FFBA24A00A9A38E /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C165DFE840E0CC02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - 2286F34D0740B3FC001164FE /* SDLMain.nib */ = { - isa = PBXVariantGroup; - children = ( - 2286F34E0740B3FC001164FE /* English */, - ); - name = SDLMain.nib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 2248FC750CE2C3A4004BC461 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tint; - ZERO_LINK = YES; - }; - name = Development; - }; - 2248FC760CE2C3A4004BC461 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tint; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 2248FC770CE2C3A4004BC461 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tint; - ZERO_LINK = YES; - }; - name = Default; - }; - 224A35F809339642005A3695 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - FRAMEWORK_SEARCH_PATHS = "/Library/Frameworks/**"; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = ""; - GCC_PREPROCESSOR_DEFINITIONS = ( - NEW_SVG, - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8)", - "CURSOR_SHAPES=SMALL", - SMALL_CURSOR_SHAPES, - __APPLE__, - HAVE_STRCASESTR, - "$(PREPROCESSOR_MACROS_$(CURRENT_ARCH))", - ); - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = "VER_DATE=\\\"2009-06-29\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2 = "DATA_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3 = "DOC_PREFIX=\\\"./share/doc/tuxpaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4 = "CONFDIR=\\\"$(HOME)/Library/Application\\ Support/TuxPaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5 = "LOCALEDIR=\\\"Tux\\ Paint.app/Contents/Resources/locale/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6 = "VER_VERSION=\\\"0.9.22\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7 = "MAGIC_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/plugins/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8 = "IMDIR=\\\"Tux\\ Paint.app/Contents/Resources/im/\\\""; - HEADER_SEARCH_PATHS = ( - "/Users/Shared/tuxpaint/include/**", - "include/**", - /opt/local/include, - /opt/local/include/cairo, - "/opt/local/lib/glib-2.0/include", - "/opt/local/include/glib-2.0", - "/opt/local/include/gdk-pixbuf-2.0", - "/opt/local/include/gtk-2.0", - "/opt/local/include/librsvg-2.0", - /Library/Frameworks/SDL.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers/, - /Library/Frameworks/SDL_mixer.framework/Headers/, - /Library/Frameworks/SDL_ttf.framework/Headers/, - ../src/mouse/16x16/, - ); - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - "\"$(SRCROOT)/../../lib\"", - ); - LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - ONLY_ACTIVE_ARCH = NO; - OTHER_CFLAGS = ""; - OTHER_CPLUSPLUSFLAGS = ""; - OTHER_LDFLAGS = ( - "-lgcc", - "-lresolv", - /Users/Shared/tuxpaint/lib/libbz2.a, - /Users/Shared/tuxpaint/lib/libcairo.a, - "/Users/Shared/tuxpaint/lib/libcroco-0.6.a", - /Users/Shared/tuxpaint/lib/libexpat.a, - /Users/Shared/tuxpaint/lib/libffi.a, - /Users/Shared/tuxpaint/lib/libfontconfig.a, - /Users/Shared/tuxpaint/lib/libfreetype.a, - /Users/Shared/tuxpaint/lib/libfribidi.a, - "/Users/Shared/tuxpaint/lib/libgdk_pixbuf-2.0.a", - "/Users/Shared/tuxpaint/lib/libgio-2.0.a", - "/Users/Shared/tuxpaint/lib/libglib-2.0.a", - "/Users/Shared/tuxpaint/lib/libgmodule-2.0.a", - "/Users/Shared/tuxpaint/lib/libgobject-2.0.a", - /Users/Shared/tuxpaint/lib/libharfbuzz.a, - /Users/Shared/tuxpaint/lib/libiconv.a, - /Users/Shared/tuxpaint/lib/libintl.a, - /Users/Shared/tuxpaint/lib/liblzma.a, - "/Users/Shared/tuxpaint/lib/libpango-1.0.a", - "/Users/Shared/tuxpaint/lib/libpangocairo-1.0.a", - "/Users/Shared/tuxpaint/lib/libpangoft2-1.0.a", - "/Users/Shared/tuxpaint/lib/libpixman-1.a", - /Users/Shared/tuxpaint/lib/libpng.a, - "/Users/Shared/tuxpaint/lib/librsvg-2.a", - /Users/Shared/tuxpaint/lib/libSDL_Pango.a, - /Users/Shared/tuxpaint/lib/libxml2.a, - /Users/Shared/tuxpaint/lib/libz.a, - ); - PREPROCESSOR_MACROS_i386 = LITTLE_ENDIAN_ARCH; - PREPROCESSOR_MACROS_ppc = BIG_ENDIAN_ARCH; - PRODUCT_NAME = "Tux Paint"; - SDKROOT = macosx10.6; - VALID_ARCHS = "ppc i386 ppc64 ppc7400 ppc970 x86_64"; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = Development; - }; - 224A35F909339642005A3695 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - COPY_PHASE_STRIP = YES; - FRAMEWORK_SEARCH_PATHS = "/Library/Frameworks/**"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = NO; - GCC_OPTIMIZATION_LEVEL = s; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = ""; - GCC_PREPROCESSOR_DEFINITIONS = ( - OLD_SVG, - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8)", - "CURSOR_SHAPES=SMALL", - SMALL_CURSOR_SHAPES, - __APPLE__, - HAVE_STRCASESTR, - "$(PREPROCESSOR_MACROS_$(CURRENT_ARCH))", - ); - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = "VER_DATE=\\\"2009-06-29\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2 = "DATA_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3 = "DOC_PREFIX=\\\"./share/doc/tuxpaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4 = "CONFDIR=\\\"$(HOME)/Library/Application\\ Support/TuxPaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5 = "LOCALEDIR=\\\"Tux\\ Paint.app/Contents/Resources/locale/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6 = "VER_VERSION=\\\"0.9.22\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7 = "MAGIC_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/plugins/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8 = "IMDIR=\\\"Tux\\ Paint.app/Contents/Resources/im/\\\""; - HEADER_SEARCH_PATHS = ( - "/Users/Shared/tuxpaint/include/**", - "include/**", - /opt/local/include, - /opt/local/include/cairo, - /Library/Frameworks/SDL.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers/, - /Library/Frameworks/SDL_mixer.framework/Headers/, - /Library/Frameworks/SDL_ttf.framework/Headers/, - ../src/mouse/16x16/, - ); - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - "\"$(SRCROOT)/../../lib\"", - ); - LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - ONLY_ACTIVE_ARCH = NO; - OTHER_CFLAGS = ""; - OTHER_CPLUSPLUSFLAGS = ""; - OTHER_LDFLAGS = ( - "-lgcc", - /Users/Shared/tuxpaint/lib/libbz2.a, - /Users/Shared/tuxpaint/lib/libexpat.a, - /Users/Shared/tuxpaint/lib/libffi.a, - /Users/Shared/tuxpaint/lib/libiconv.a, - /Users/Shared/tuxpaint/lib/liblzma.a, - /Users/Shared/tuxpaint/lib/libxml2.a, - /Users/Shared/tuxpaint/lib/libz.a, - ); - PREPROCESSOR_MACROS_i386 = LITTLE_ENDIAN_ARCH; - PREPROCESSOR_MACROS_ppc = BIG_ENDIAN_ARCH; - PRODUCT_NAME = "Tux Paint"; - SDKROOT = macosx10.6; - VALID_ARCHS = "ppc i386 ppc64 ppc7400 ppc970 x86_64"; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 224A35FA09339642005A3695 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(NATIVE_ARCH_ACTUAL)"; - FRAMEWORK_SEARCH_PATHS = "/Library/Frameworks/**"; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = ""; - GCC_PREPROCESSOR_DEFINITIONS = ( - OLD_SVG, - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7)", - "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8)", - "CURSOR_SHAPES=SMALL", - SMALL_CURSOR_SHAPES, - __APPLE__, - HAVE_STRCASESTR, - "$(PREPROCESSOR_MACROS_$(CURRENT_ARCH))", - ); - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = "VER_DATE=\\\"2009-06-29\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2 = "DATA_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3 = "DOC_PREFIX=\\\"./share/doc/tuxpaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4 = "CONFDIR=\\\"$(HOME)/Library/Application\\ Support/TuxPaint/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_5 = "LOCALEDIR=\\\"Tux\\ Paint.app/Contents/Resources/locale/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_6 = "VER_VERSION=\\\"0.9.22\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_7 = "MAGIC_PREFIX=\\\"Tux\\ Paint.app/Contents/Resources/plugins/\\\""; - GCC_PREPROCESSOR_DEFINITIONS_QUOTED_8 = "IMDIR=\\\"Tux\\ Paint.app/Contents/Resources/im/\\\""; - HEADER_SEARCH_PATHS = ( - "/Users/Shared/tuxpaint/include/**", - "include/**", - /opt/local/include, - /opt/local/include/cairo, - /Library/Frameworks/SDL.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers/, - /Library/Frameworks/SDL_mixer.framework/Headers/, - /Library/Frameworks/SDL_ttf.framework/Headers/, - ../src/mouse/16x16/, - ); - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - "\"$(SRCROOT)/../../lib\"", - ); - LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - ONLY_ACTIVE_ARCH = NO; - OTHER_CFLAGS = ""; - OTHER_CPLUSPLUSFLAGS = ""; - OTHER_LDFLAGS = ( - "-lgcc", - /Users/Shared/tuxpaint/lib/libbz2.a, - /Users/Shared/tuxpaint/lib/libexpat.a, - /Users/Shared/tuxpaint/lib/libffi.a, - /Users/Shared/tuxpaint/lib/libiconv.a, - /Users/Shared/tuxpaint/lib/liblzma.a, - /Users/Shared/tuxpaint/lib/libxml2.a, - /Users/Shared/tuxpaint/lib/libz.a, - ); - PREPROCESSOR_MACROS_i386 = LITTLE_ENDIAN_ARCH; - PREPROCESSOR_MACROS_ppc = BIG_ENDIAN_ARCH; - PRODUCT_NAME = "Tux Paint"; - SDKROOT = macosx10.6; - VALID_ARCHS = "ppc i386 ppc64 ppc7400 ppc970 x86_64"; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = Default; - }; - 224A35FC09339642005A3695 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(NATIVE_ARCH_ACTUAL)"; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = NO; - HEADER_SEARCH_PATHS = ( - "include/**", - "/Users/Shared/tuxpaint/include/**", - ); - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks @loader_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - /Users/Shared/tuxpaint/lib, - lib, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - PATH = "$PATH :/opt/local/bin"; - PKG_CONFIG_PATH = "/Users/Shared/tuxpaint/lib/pkgconfig:/usr/lib/pkgconfig:/opt/local/lib/pkgconfig"; - SDKROOT = macosx10.6; - }; - name = Development; - }; - 224A35FD09339642005A3695 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(NATIVE_ARCH_ACTUAL)"; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = NO; - HEADER_SEARCH_PATHS = ( - "include/**", - "/Users/Shared/tuxpaint/include/**", - ); - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks @loader_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - /Users/Shared/tuxpaint/lib, - lib, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - PATH = "$PATH :/opt/local/bin"; - PKG_CONFIG_PATH = "/Users/Shared/tuxpaint/lib/pkgconfig:/usr/lib/pkgconfig:/opt/local/lib/pkgconfig"; - SDKROOT = macosx10.6; - }; - name = Deployment; - }; - 224A35FE09339642005A3695 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(NATIVE_ARCH_ACTUAL)"; - GCC_LINK_WITH_DYNAMIC_LIBRARIES = NO; - HEADER_SEARCH_PATHS = ( - "include/**", - "/Users/Shared/tuxpaint/include/**", - ); - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../Frameworks @loader_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - /Users/Shared/tuxpaint/lib, - lib, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - PATH = "$PATH :/opt/local/bin"; - PKG_CONFIG_PATH = "/Users/Shared/tuxpaint/lib/pkgconfig:/usr/lib/pkgconfig:/opt/local/lib/pkgconfig"; - SDKROOT = macosx10.6; - }; - name = Default; - }; - 226E96DB0FFB999A00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = alien; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E96DC0FFB999A00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = alien; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E96DD0FFB999A00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = alien; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E96F00FFB9B3200A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = confetti; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E96F10FFB9B3200A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = confetti; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E96F20FFB9B3200A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = confetti; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E970D0FFB9BBD00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fisheye; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E970E0FFB9BBD00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fisheye; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E970F0FFB9BBD00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fisheye; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97230FFB9C4E00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fold; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97240FFB9C4E00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fold; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97250FFB9C4E00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fold; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97370FFB9CB500A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mosaic; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97380FFB9CB500A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mosaic; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97390FFB9CB500A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mosaic; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97510FFB9D3300A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = noise; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97520FFB9D3300A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = noise; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97530FFB9D3300A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = noise; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97670FFB9D9100A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rails; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97680FFB9D9100A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rails; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97690FFB9D9100A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rails; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97770FFB9DD600A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rain; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97780FFB9DD600A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rain; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97790FFB9DD600A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rain; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E978A0FFB9E4000A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = realrainbow; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E978B0FFB9E4000A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = realrainbow; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E978C0FFB9E4000A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = realrainbow; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E979C0FFB9E9600A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rosette; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E979D0FFB9E9600A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rosette; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E979E0FFB9E9600A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rosette; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97AE0FFB9EEF00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = sharpen; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97AF0FFB9EEF00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = sharpen; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97B00FFB9EEF00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = sharpen; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97C00FFB9F4200A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = snow; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97C10FFB9F4200A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = snow; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97C20FFB9F4200A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = snow; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97D30FFB9F8E00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = string; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97D40FFB9F8E00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = string; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97D50FFB9F8E00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = string; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97E70FFB9FEE00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = toothpaste; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97E80FFB9FEE00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = toothpaste; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97E90FFB9FEE00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = toothpaste; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E97FB0FFBA04000A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tornado; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E97FC0FFBA04000A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tornado; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E97FD0FFBA04000A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tornado; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E98100FFBA08F00A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tv; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E98110FFBA08F00A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tv; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E98120FFBA08F00A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = tv; - ZERO_LINK = YES; - }; - name = Default; - }; - 226E981F0FFBA10500A9A38E /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = puzzle; - ZERO_LINK = YES; - }; - name = Development; - }; - 226E98200FFBA10500A9A38E /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = puzzle; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 226E98210FFBA10500A9A38E /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = puzzle; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE2B40CEFE00900D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blocks_chalk_drip; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE2B50CEFE00900D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blocks_chalk_drip; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE2B60CEFE00900D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blocks_chalk_drip; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE31A0CF0BC9B00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blur; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE31B0CF0BC9B00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blur; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE31C0CF0BC9B00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = blur; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3420CF0C4F100D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = bricks; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE3430CF0C4F100D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = bricks; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3440CF0C4F100D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = bricks; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3590CF0C7EF00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = calligraphy; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE35A0CF0C7EF00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = calligraphy; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE35B0CF0C7EF00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = calligraphy; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE36C0CF0C81E00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = cartoon; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE36D0CF0C81E00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = cartoon; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE36E0CF0C81E00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = cartoon; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE37E0CF0C89300D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = emboss; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE37F0CF0C89300D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = emboss; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3800CF0C89300D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = emboss; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3930CF0C8E600D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fade_darken; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE3940CF0C8E600D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fade_darken; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3950CF0C8E600D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fade_darken; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3A60CF0C90600D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fill; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE3A70CF0C90600D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fill; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3A80CF0C90600D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = fill; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3B90CF0C9A300D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = flower; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE3BA0CF0C9A300D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = flower; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3BB0CF0C9A300D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = flower; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE3F00CF0CBDC00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = foam; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE3F10CF0CBDC00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = foam; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE3F20CF0CBDC00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = foam; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4020CF0CC0100D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = glasstile; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4030CF0CC0100D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = glasstile; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4040CF0CC0100D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = glasstile; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4140CF0CC2500D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = kalidescope; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4150CF0CC2500D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = kalidescope; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4160CF0CC2500D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = kalidescope; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4260CF0CC4C00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = light; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4270CF0CC4C00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = light; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4280CF0CC4C00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = light; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4380CF0CC6B00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mirror_flip; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4390CF0CC6B00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mirror_flip; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE43A0CF0CC6B00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = mirror_flip; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE44A0CF0CCB400D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = negative; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE44B0CF0CCB400D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = negative; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE44C0CF0CCB400D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = negative; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE45C0CF0CCDB00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rainbow; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE45D0CF0CCDB00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rainbow; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE45E0CF0CCDB00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = rainbow; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE46E0CF0CD1500D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = ripples; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE46F0CF0CD1500D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = ripples; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4700CF0CD1500D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = ripples; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4800CF0CD4000D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = shift; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4810CF0CD4000D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = shift; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4820CF0CD4000D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = shift; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4920CF0CD6400D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = smudge; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4930CF0CD6400D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = smudge; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4940CF0CD6400D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = smudge; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4A40CF0CD8600D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = waves; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4A50CF0CD8600D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = waves; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4A60CF0CD8600D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = waves; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4B60CF0CDA500D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = grass; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4B70CF0CDA500D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = grass; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4B80CF0CDA500D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = grass; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4C80CF0CDE200D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = distortion; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4C90CF0CDE200D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = distortion; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4CA0CF0CDE200D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = distortion; - ZERO_LINK = YES; - }; - name = Default; - }; - 22ECE4DA0CF0CE4A00D390B3 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = metalpaint; - ZERO_LINK = YES; - }; - name = Development; - }; - 22ECE4DB0CF0CE4A00D390B3 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = metalpaint; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 22ECE4DC0CF0CE4A00D390B3 /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - EXECUTABLE_EXTENSION = so; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /Library/Frameworks/SDL_mixer.framework/Headers, - /Library/Frameworks/SDL_image.framework/Headers, - /Library/Frameworks/SDL.framework/Headers, - /opt/local/include, - "$(inherited)", - ); - INSTALL_PATH = /usr/local/lib; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", - ); - LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../../../../Shared/tuxpaint/lib\""; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - "-liconv", - ); - PREBINDING = NO; - PRODUCT_NAME = metalpaint; - ZERO_LINK = YES; - }; - name = Default; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 2248FC740CE2C3A4004BC461 /* Build configuration list for PBXNativeTarget "tint" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2248FC750CE2C3A4004BC461 /* Development */, - 2248FC760CE2C3A4004BC461 /* Deployment */, - 2248FC770CE2C3A4004BC461 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 224A35F709339642005A3695 /* Build configuration list for PBXNativeTarget "Tux Paint" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 224A35F809339642005A3695 /* Development */, - 224A35F909339642005A3695 /* Deployment */, - 224A35FA09339642005A3695 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 224A35FB09339642005A3695 /* Build configuration list for PBXProject "TuxPaint" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 224A35FC09339642005A3695 /* Development */, - 224A35FD09339642005A3695 /* Deployment */, - 224A35FE09339642005A3695 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E96DA0FFB999A00A9A38E /* Build configuration list for PBXNativeTarget "alien" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E96DB0FFB999A00A9A38E /* Development */, - 226E96DC0FFB999A00A9A38E /* Deployment */, - 226E96DD0FFB999A00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E96EF0FFB9B3200A9A38E /* Build configuration list for PBXNativeTarget "confetti" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E96F00FFB9B3200A9A38E /* Development */, - 226E96F10FFB9B3200A9A38E /* Deployment */, - 226E96F20FFB9B3200A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E970C0FFB9BBD00A9A38E /* Build configuration list for PBXNativeTarget "fisheye" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E970D0FFB9BBD00A9A38E /* Development */, - 226E970E0FFB9BBD00A9A38E /* Deployment */, - 226E970F0FFB9BBD00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97220FFB9C4E00A9A38E /* Build configuration list for PBXNativeTarget "fold" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97230FFB9C4E00A9A38E /* Development */, - 226E97240FFB9C4E00A9A38E /* Deployment */, - 226E97250FFB9C4E00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97360FFB9CB500A9A38E /* Build configuration list for PBXNativeTarget "mosaic" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97370FFB9CB500A9A38E /* Development */, - 226E97380FFB9CB500A9A38E /* Deployment */, - 226E97390FFB9CB500A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97500FFB9D3300A9A38E /* Build configuration list for PBXNativeTarget "noise" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97510FFB9D3300A9A38E /* Development */, - 226E97520FFB9D3300A9A38E /* Deployment */, - 226E97530FFB9D3300A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97660FFB9D9100A9A38E /* Build configuration list for PBXNativeTarget "rails" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97670FFB9D9100A9A38E /* Development */, - 226E97680FFB9D9100A9A38E /* Deployment */, - 226E97690FFB9D9100A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97760FFB9DD600A9A38E /* Build configuration list for PBXNativeTarget "rain" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97770FFB9DD600A9A38E /* Development */, - 226E97780FFB9DD600A9A38E /* Deployment */, - 226E97790FFB9DD600A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97890FFB9E4000A9A38E /* Build configuration list for PBXNativeTarget "realrainbow" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E978A0FFB9E4000A9A38E /* Development */, - 226E978B0FFB9E4000A9A38E /* Deployment */, - 226E978C0FFB9E4000A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E979B0FFB9E9600A9A38E /* Build configuration list for PBXNativeTarget "rosette" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E979C0FFB9E9600A9A38E /* Development */, - 226E979D0FFB9E9600A9A38E /* Deployment */, - 226E979E0FFB9E9600A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97AD0FFB9EEF00A9A38E /* Build configuration list for PBXNativeTarget "sharpen" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97AE0FFB9EEF00A9A38E /* Development */, - 226E97AF0FFB9EEF00A9A38E /* Deployment */, - 226E97B00FFB9EEF00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97BF0FFB9F4200A9A38E /* Build configuration list for PBXNativeTarget "snow" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97C00FFB9F4200A9A38E /* Development */, - 226E97C10FFB9F4200A9A38E /* Deployment */, - 226E97C20FFB9F4200A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97D20FFB9F8E00A9A38E /* Build configuration list for PBXNativeTarget "string" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97D30FFB9F8E00A9A38E /* Development */, - 226E97D40FFB9F8E00A9A38E /* Deployment */, - 226E97D50FFB9F8E00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97E60FFB9FEE00A9A38E /* Build configuration list for PBXNativeTarget "toothpaste" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97E70FFB9FEE00A9A38E /* Development */, - 226E97E80FFB9FEE00A9A38E /* Deployment */, - 226E97E90FFB9FEE00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E97FA0FFBA04000A9A38E /* Build configuration list for PBXNativeTarget "tornado" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E97FB0FFBA04000A9A38E /* Development */, - 226E97FC0FFBA04000A9A38E /* Deployment */, - 226E97FD0FFBA04000A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E980F0FFBA08F00A9A38E /* Build configuration list for PBXNativeTarget "tv" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E98100FFBA08F00A9A38E /* Development */, - 226E98110FFBA08F00A9A38E /* Deployment */, - 226E98120FFBA08F00A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 226E981E0FFBA10500A9A38E /* Build configuration list for PBXNativeTarget "puzzle" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 226E981F0FFBA10500A9A38E /* Development */, - 226E98200FFBA10500A9A38E /* Deployment */, - 226E98210FFBA10500A9A38E /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE2B30CEFE00900D390B3 /* Build configuration list for PBXNativeTarget "blocks_chalk_drip" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE2B40CEFE00900D390B3 /* Development */, - 22ECE2B50CEFE00900D390B3 /* Deployment */, - 22ECE2B60CEFE00900D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3190CF0BC9B00D390B3 /* Build configuration list for PBXNativeTarget "blur" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE31A0CF0BC9B00D390B3 /* Development */, - 22ECE31B0CF0BC9B00D390B3 /* Deployment */, - 22ECE31C0CF0BC9B00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3410CF0C4F100D390B3 /* Build configuration list for PBXNativeTarget "bricks" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3420CF0C4F100D390B3 /* Development */, - 22ECE3430CF0C4F100D390B3 /* Deployment */, - 22ECE3440CF0C4F100D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3580CF0C7EF00D390B3 /* Build configuration list for PBXNativeTarget "calligraphy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3590CF0C7EF00D390B3 /* Development */, - 22ECE35A0CF0C7EF00D390B3 /* Deployment */, - 22ECE35B0CF0C7EF00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE36B0CF0C81E00D390B3 /* Build configuration list for PBXNativeTarget "cartoon" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE36C0CF0C81E00D390B3 /* Development */, - 22ECE36D0CF0C81E00D390B3 /* Deployment */, - 22ECE36E0CF0C81E00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE37D0CF0C89300D390B3 /* Build configuration list for PBXNativeTarget "emboss" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE37E0CF0C89300D390B3 /* Development */, - 22ECE37F0CF0C89300D390B3 /* Deployment */, - 22ECE3800CF0C89300D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3920CF0C8E600D390B3 /* Build configuration list for PBXNativeTarget "fade_darken" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3930CF0C8E600D390B3 /* Development */, - 22ECE3940CF0C8E600D390B3 /* Deployment */, - 22ECE3950CF0C8E600D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3A50CF0C90600D390B3 /* Build configuration list for PBXNativeTarget "fill" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3A60CF0C90600D390B3 /* Development */, - 22ECE3A70CF0C90600D390B3 /* Deployment */, - 22ECE3A80CF0C90600D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3B80CF0C9A300D390B3 /* Build configuration list for PBXNativeTarget "flower" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3B90CF0C9A300D390B3 /* Development */, - 22ECE3BA0CF0C9A300D390B3 /* Deployment */, - 22ECE3BB0CF0C9A300D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE3EF0CF0CBDC00D390B3 /* Build configuration list for PBXNativeTarget "foam" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE3F00CF0CBDC00D390B3 /* Development */, - 22ECE3F10CF0CBDC00D390B3 /* Deployment */, - 22ECE3F20CF0CBDC00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4010CF0CC0100D390B3 /* Build configuration list for PBXNativeTarget "glasstile" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4020CF0CC0100D390B3 /* Development */, - 22ECE4030CF0CC0100D390B3 /* Deployment */, - 22ECE4040CF0CC0100D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4130CF0CC2500D390B3 /* Build configuration list for PBXNativeTarget "kalidescope" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4140CF0CC2500D390B3 /* Development */, - 22ECE4150CF0CC2500D390B3 /* Deployment */, - 22ECE4160CF0CC2500D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4250CF0CC4C00D390B3 /* Build configuration list for PBXNativeTarget "light" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4260CF0CC4C00D390B3 /* Development */, - 22ECE4270CF0CC4C00D390B3 /* Deployment */, - 22ECE4280CF0CC4C00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4370CF0CC6B00D390B3 /* Build configuration list for PBXNativeTarget "mirror_flip" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4380CF0CC6B00D390B3 /* Development */, - 22ECE4390CF0CC6B00D390B3 /* Deployment */, - 22ECE43A0CF0CC6B00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4490CF0CCB400D390B3 /* Build configuration list for PBXNativeTarget "negative" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE44A0CF0CCB400D390B3 /* Development */, - 22ECE44B0CF0CCB400D390B3 /* Deployment */, - 22ECE44C0CF0CCB400D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE45B0CF0CCDB00D390B3 /* Build configuration list for PBXNativeTarget "rainbow" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE45C0CF0CCDB00D390B3 /* Development */, - 22ECE45D0CF0CCDB00D390B3 /* Deployment */, - 22ECE45E0CF0CCDB00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE46D0CF0CD1500D390B3 /* Build configuration list for PBXNativeTarget "ripples" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE46E0CF0CD1500D390B3 /* Development */, - 22ECE46F0CF0CD1500D390B3 /* Deployment */, - 22ECE4700CF0CD1500D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE47F0CF0CD4000D390B3 /* Build configuration list for PBXNativeTarget "shift" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4800CF0CD4000D390B3 /* Development */, - 22ECE4810CF0CD4000D390B3 /* Deployment */, - 22ECE4820CF0CD4000D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4910CF0CD6400D390B3 /* Build configuration list for PBXNativeTarget "smudge" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4920CF0CD6400D390B3 /* Development */, - 22ECE4930CF0CD6400D390B3 /* Deployment */, - 22ECE4940CF0CD6400D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4A30CF0CD8600D390B3 /* Build configuration list for PBXNativeTarget "waves" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4A40CF0CD8600D390B3 /* Development */, - 22ECE4A50CF0CD8600D390B3 /* Deployment */, - 22ECE4A60CF0CD8600D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4B50CF0CDA500D390B3 /* Build configuration list for PBXNativeTarget "grass" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4B60CF0CDA500D390B3 /* Development */, - 22ECE4B70CF0CDA500D390B3 /* Deployment */, - 22ECE4B80CF0CDA500D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4C70CF0CDE200D390B3 /* Build configuration list for PBXNativeTarget "distortion" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4C80CF0CDE200D390B3 /* Development */, - 22ECE4C90CF0CDE200D390B3 /* Deployment */, - 22ECE4CA0CF0CDE200D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 22ECE4D90CF0CE4A00D390B3 /* Build configuration list for PBXNativeTarget "metalpaint" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 22ECE4DA0CF0CE4A00D390B3 /* Development */, - 22ECE4DB0CF0CE4A00D390B3 /* Deployment */, - 22ECE4DC0CF0CE4A00D390B3 /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} diff --git a/macosx/credits.txt b/macosx/credits.txt deleted file mode 100644 index 44c202a0c..000000000 --- a/macosx/credits.txt +++ /dev/null @@ -1,11 +0,0 @@ -(c) 2009 Tux Paint Development Team - -Website: - - -Mac OS X build: -Martin Fuhrer - -Universal binary made possible with assistance from: -Carlo Gandolfi -Douglas Barbieri diff --git a/macosx/fcinstaller.m b/macosx/fcinstaller.m deleted file mode 100644 index 49b077b1d..000000000 --- a/macosx/fcinstaller.m +++ /dev/null @@ -1,109 +0,0 @@ -// -// fcinstaller.m -// TuxPaint -// -// Created by Martin Fuhrer on 03/02/08. -// Copyright 2008 __MyCompanyName__. All rights reserved. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#import -#include - -/* Category for NSFileManager */ -@interface NSFileManager (CreateDirectoryRecursively) -- (BOOL)createDirectoryRecursively:(NSString *)path attributes:(NSDictionary *)attributes; -@end - -int main(int argc, const char* argv[]) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - NSFileManager *fileManager = [NSFileManager defaultManager]; - NSBundle *bundle = [NSBundle mainBundle]; - NSString *bundlePath = [bundle bundlePath]; - - BOOL success = TRUE; - BOOL fileExists = TRUE; - - if( argc < 2 ) - return -1; - - NSString *globalPreferencesPath = [NSString stringWithCString:(argv[1])]; - NSString *fontsPath = [globalPreferencesPath stringByAppendingString:@"/fontconfig/fonts"]; - NSString *fontsConfInstalledPath = [fontsPath stringByAppendingString:@"/fonts.conf"]; - NSString *fontsDtdInstalledPath = [fontsPath stringByAppendingString:@"/fonts.dtd"]; - NSString *fontsConfBundlePath = [bundle pathForResource:@"fonts" ofType:@"conf"]; - NSString *fontsDtdBundlePath = [bundle pathForResource:@"fonts" ofType:@"dtd"]; - - fileExists = [fileManager fileExistsAtPath:fontsConfInstalledPath]; - if (!fileExists) { - success = ([fileManager createDirectoryRecursively:fontsPath attributes:nil] && success); - success = ([fileManager copyPath:fontsConfBundlePath toPath:fontsConfInstalledPath handler:nil] && success); - } - - fileExists = [fileManager fileExistsAtPath:fontsDtdInstalledPath]; - if (!fileExists) { - success = ([fileManager createDirectoryRecursively:fontsPath attributes:nil] && success); - success = ([fileManager copyPath:fontsDtdBundlePath toPath:fontsDtdInstalledPath handler:nil] && success); - } - - /* - NSString *globalCachePath = [globalPreferencesPath stringByAppendingString:@"/fontconfig/cache"]; - NSString *userCachePath = [[NSString stringWithString:@"~/.fontconfig"] stringByExpandingTildeInPath]; - fileExists = ([fileManager fileExistsAtPath:globalCachePath] || [fileManager fileExistsAtPath:userCachePath]); - if (!fileExists) - { - FcBool initSuccess = FcInit(); - if( initSuccess == FcFalse ) - success = FALSE; - } - */ - - [pool release]; - - return (int)(!success); -} - -@implementation NSFileManager (CreateDirectoryRecursively) - -- (BOOL)createDirectoryRecursively:(NSString *)path attributes:(NSDictionary *)attributes -{ - BOOL isDir = TRUE; - BOOL fileExists; - - fileExists = [self fileExistsAtPath:path isDirectory:&isDir]; - if (isDir) { - if (fileExists) { - /* directory exists */ - return TRUE; - } - else - { - /* create directory */ - NSString *parentDirectory = [path stringByDeletingLastPathComponent]; - [self createDirectoryRecursively:parentDirectory attributes:attributes]; - return [self createDirectoryAtPath:path attributes:attributes]; - } - } - else - { - /* desired directory path is blocked by a file */ - return FALSE; - } -} - -@end \ No newline at end of file diff --git a/macosx/fonts.conf b/macosx/fonts.conf deleted file mode 100644 index b31570e94..000000000 --- a/macosx/fonts.conf +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - - - - - /Library/Fonts - /Network/Library/Fonts - - /usr/X11R6/lib/X11/fonts/Type1 - /usr/X11R6/lib/X11/fonts/TTF - /usr/share/fonts - ~/Library/Fonts - ~/.fonts - - - ~/.fontconfig - - - - - - - mono - - - monospace - - - - - - - sans serif - - - sans-serif - - - - - - - sans - - - sans-serif - - - - - - - - - Times - serif - - - Times New Roman - serif - - - Nimbus Roman No9 L - serif - - - Luxi Serif - serif - - - Kochi Mincho - serif - - - AR PL SungtiL GB - serif - - - AR PL Mingti2L Big5 - serif - - - Baekmuk Batang - serif - - - - - - Lucida Grande - sans-serif - - - Geneva - sans-serif - - - Helvetica - sans-serif - - - Arial - sans-serif - - - Verdana - sans-serif - - - Nimbus Sans L - sans-serif - - - Luxi Sans - sans-serif - - - Osaka - sans-serif - - - Kochi Gothic - sans-serif - - - AR PL KaitiM GB - sans-serif - - - AR PL KaitiM Big5 - sans-serif - - - Baekmuk Dotum - sans-serif - - - SimSun - sans-serif - - - - - - Monaco - monospace - - - Courier - monospace - - - Courier New - monospace - - - Andale Mono - monospace - - - Luxi Mono - monospace - - - Nimbus Mono L - monospace - - - NSimSun - monospace - - - - - - sans-serif - - - serif - - - monospace - - - sans-serif - - - - - ~/.fonts.conf - - - local.conf - - - - Times - Times New Roman - - - Helvetica - Verdana - - - Arial - Verdana - - - Courier - Courier New - - - - - serif - - Times New Roman - Nimbus Roman No9 L - Luxi Serif - Times - Kochi Mincho - AR PL SungtiL GB - AR PL Mingti2L Big5 - Baekmuk Batang - - - - sans-serif - - Lucida Grande - Geneva - Verdana - Nimbus Sans L - Luxi Sans - Arial - Helvetica - Kochi Gothic - Osaka - AR PL KaitiM GB - AR PL KaitiM Big5 - Baekmuk Dotum - SimSun - - - - monospace - - Monaco - Andale Mono - Courier New - Luxi Mono - Nimbus Mono L - Kochi Gothic - AR PL KaitiM GB - Baekmuk Dotum - - - - - - - - - roman - - - - roman - - - - - matrix - 1.2 - 01 - - - - - - oblique - - - - - - - 0x0020 - 0x00a0 - 0x00ad - 0x115f - 0x1160 - 0x1680 - 0x2000 - 0x2001 - 0x2002 - 0x2003 - 0x2004 - 0x2005 - 0x2006 - 0x2007 - 0x2008 - 0x2009 - 0x200a - 0x200b - 0x200c - 0x200d - 0x200e - 0x200f - 0x2028 - 0x2029 - 0x202a - 0x202b - 0x202c - 0x202d - 0x202e - 0x202f - 0x205f - 0x2060 - 0x2061 - 0x2062 - 0x2063 - 0x206A - 0x206B - 0x206C - 0x206D - 0x206E - 0x206F - 0x3000 - 0x3164 - 0xfeff - 0xffa0 - 0xfff9 - 0xfffa - 0xfffa - - - - 30 - - - - diff --git a/macosx/fonts.dtd b/macosx/fonts.dtd deleted file mode 100644 index a5c54f983..000000000 --- a/macosx/fonts.dtd +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/macosx/message.h b/macosx/message.h deleted file mode 100644 index 687fc0369..000000000 --- a/macosx/message.h +++ /dev/null @@ -1,27 +0,0 @@ -// -// message.h -// Tux Paint -// -// Created by Martin Fuhrer on Sat Dec 8 2007. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#define MSG_FONT_CACHE 1 - -void displayMessage(int msgId); -void hideMessage(); diff --git a/macosx/message.m b/macosx/message.m deleted file mode 100644 index 4ed213bf2..000000000 --- a/macosx/message.m +++ /dev/null @@ -1,55 +0,0 @@ -// -// message.m -// Tux Paint -// -// Created by Martin Fuhrer on Sat Dec 8 2007. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#import "SDLMain.h" -#import "message.h" - -extern SDLMain* sdlMain; - -void displayMessage( int msgId ) -{ - NSString *message = nil; - NSString *status = nil; - - if( sdlMain == nil ) - return; - - switch( msgId ) - { - case( MSG_FONT_CACHE ): - message = @"I'm currently fishing for fonts on your Mac. This may take me a minute, as I'd much rather be feeding on fish from the sea."; - status = @"Status: Caching fonts (this only needs to be done once)..."; - [sdlMain displayMessage:message andStatus:status withProgressIndicator:YES]; - break; - default: - break; - } -} - -void hideMessage() -{ - if( sdlMain == nil ) - return; - - [sdlMain hideMessage]; -} \ No newline at end of file diff --git a/macosx/patch-test.sh b/macosx/patch-test.sh deleted file mode 100644 index 1870469d6..000000000 --- a/macosx/patch-test.sh +++ /dev/null @@ -1,14 +0,0 @@ -#Test en changeant les chemins orginaux des bibliotheques dynamiques -#sudo mv /usr/local/lib /usr/local/_lib -#sudo mv /opt/local/lib /opt/local/_lib -sudo mv /Library/Frameworks/SDL.framework /Library/Frameworks/_SDL.framework -sudo mv /Library/Frameworks/SDL_image.framework /Library/Frameworks/_SDL_image.framework -sudo mv /Library/Frameworks/SDL_mixer.framework /Library/Frameworks/_SDL_mixer.framework -sudo mv /Library/Frameworks/SDL_ttf.framework /Library/Frameworks/_SDL_ttf.framework -"$1" -sudo mv /Library/Frameworks/_SDL.framework /Library/Frameworks/SDL.framework -sudo mv /Library/Frameworks/_SDL_image.framework /Library/Frameworks/SDL_image.framework -sudo mv /Library/Frameworks/_SDL_mixer.framework /Library/Frameworks/SDL_mixer.framework -sudo mv /Library/Frameworks/_SDL_ttf.framework /Library/Frameworks/SDL_ttf.framework -#sudo mv /opt/local/_lib /opt/local/lib -#sudo mv /usr/local/_lib /usr/local/lib diff --git a/macosx/patch.c b/macosx/patch.c deleted file mode 100644 index 86256628b..000000000 --- a/macosx/patch.c +++ /dev/null @@ -1,365 +0,0 @@ -/* - * patch.c - * TuxPaint - * - * Created by Eric (EP) on 13-09-13. - * Copyright 2013 __MyCompanyName__. All rights reserved. - * - * Patch to fix code (incompatible, missing...) //EP - * - */ - -#include -#include -#include -#include -#include "patch.h" - - -// missing from wchar.h on Mac -wchar_t *wcsdup(const wchar_t * ws) -{ - wchar_t *ret; - size_t len; - - len = wcslen(ws); - ret = malloc((len + 1) * sizeof(wchar_t)); - if (ret == 0) - return ret; - return (wcscpy(ret, ws)); -} - - -// missing, needed by __nl_find_msg in libintl.a(dcigettext.o) -// http://forums.macrumors.com/showthread.php?t=1284479 -#undef iconv_t -typedef void *iconv_t; -extern size_t libiconv(iconv_t cd, char * *inbuf, size_t * inbytesleft, char * *outbuf, size_t * outbytesleft); -extern iconv_t libiconv_open(const char *tocode, const char *fromcode); - -size_t iconv(iconv_t cd, char **inbuf, size_t * inbytesleft, char **outbuf, size_t * outbytesleft) -{ - return libiconv(cd, inbuf, inbytesleft, outbuf, outbytesleft); -} - -iconv_t iconv_open(const char *tocode, const char *fromcode) -{ - return libiconv_open(tocode, fromcode); -} - - -// to fix ineffective setlocale() in i18n.c or force language to Inuktitut -// must be called prior to setup_i18n() -patch_i18n(const char *locale) -{ - setenv("LANG", locale, 1); // takes language passed as an argument -// setenv("LANG", "iu_CA.UTF-8", 1); // forces language to Inuktitut -} - - -#ifdef PATCH_10_5 -// missing, needed by __udivmodti4 -// http://www.publicsource.apple.com/source/clang/clang-137/src/projects/compiler-rt/lib/int_lib.h -#include -typedef unsigned su_int; -typedef long long di_int; -typedef unsigned long long du_int; - -#ifdef __i386__ -typedef int ti_int __attribute__ ((mode(DI))); -typedef unsigned tu_int __attribute__ ((mode(DI))); -#else -typedef int ti_int __attribute__ ((mode(TI))); -typedef unsigned tu_int __attribute__ ((mode(TI))); -#endif -typedef union -{ - tu_int all; - struct - { -#if _YUGA_LITTLE_ENDIAN - du_int low; - du_int high; -#else - du_int high; - du_int low; -#endif /* _YUGA_LITTLE_ENDIAN */ - } s; -} utwords; - -// missing, needed by __umodti3 and __udivti3 -// http://www.publicsource.apple.com/source/clang/clang-137/src/projects/compiler-rt/lib/udivmodti4.c -tu_int __udivmodti4(tu_int a, tu_int b, tu_int * rem) -{ - const unsigned n_udword_bits = sizeof(du_int) * CHAR_BIT; - const unsigned n_utword_bits = sizeof(tu_int) * CHAR_BIT; - utwords n; - - n.all = a; - utwords d; - - d.all = b; - utwords q; - utwords r; - unsigned sr; - - /* special cases, X is unknown, K != 0 */ - if (n.s.high == 0) - { - if (d.s.high == 0) - { - /* 0 X - * --- - * 0 X - */ - if (rem) - *rem = n.s.low % d.s.low; - return n.s.low / d.s.low; - } - /* 0 X - * --- - * K X - */ - if (rem) - *rem = n.s.low; - return 0; - } - /* n.s.high != 0 */ - if (d.s.low == 0) - { - if (d.s.high == 0) - { - /* K X - * --- - * 0 0 - */ - if (rem) - *rem = n.s.high % d.s.low; - return n.s.high / d.s.low; - } - /* d.s.high != 0 */ - if (n.s.low == 0) - { - /* K 0 - * --- - * K 0 - */ - if (rem) - { - r.s.high = n.s.high % d.s.high; - r.s.low = 0; - *rem = r.all; - } - return n.s.high / d.s.high; - } - /* K K - * --- - * K 0 - */ - if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */ - { - if (rem) - { - r.s.low = n.s.low; - r.s.high = n.s.high & (d.s.high - 1); - *rem = r.all; - } - return n.s.high >> __builtin_ctzll(d.s.high); - } - /* K K - * --- - * K 0 - */ - sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); - /* 0 <= sr <= n_udword_bits - 2 or sr large */ - if (sr > n_udword_bits - 2) - { - if (rem) - *rem = n.all; - return 0; - } - ++sr; - /* 1 <= sr <= n_udword_bits - 1 */ - /* q.all = n.all << (n_utword_bits - sr); */ - q.s.low = 0; - q.s.high = n.s.low << (n_udword_bits - sr); - /* r.all = n.all >> sr; */ - r.s.high = n.s.high >> sr; - r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); - } - else /* d.s.low != 0 */ - { - if (d.s.high == 0) - { - /* K X - * --- - * 0 K - */ - if ((d.s.low & (d.s.low - 1)) == 0) /* if d is a power of 2 */ - { - if (rem) - *rem = n.s.low & (d.s.low - 1); - if (d.s.low == 1) - return n.all; - unsigned sr = __builtin_ctzll(d.s.low); - - q.s.high = n.s.high >> sr; - q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); - return q.all; - } - /* K X - * --- - * 0 K - */ - sr = 1 + n_udword_bits + __builtin_clzll(d.s.low) - __builtin_clzll(n.s.high); - /* 2 <= sr <= n_utword_bits - 1 - * q.all = n.all << (n_utword_bits - sr); - * r.all = n.all >> sr; - * if (sr == n_udword_bits) - * { - * q.s.low = 0; - * q.s.high = n.s.low; - * r.s.high = 0; - * r.s.low = n.s.high; - * } - * else if (sr < n_udword_bits) // 2 <= sr <= n_udword_bits - 1 - * { - * q.s.low = 0; - * q.s.high = n.s.low << (n_udword_bits - sr); - * r.s.high = n.s.high >> sr; - * r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); - * } - * else // n_udword_bits + 1 <= sr <= n_utword_bits - 1 - * { - * q.s.low = n.s.low << (n_utword_bits - sr); - * q.s.high = (n.s.high << (n_utword_bits - sr)) | - * (n.s.low >> (sr - n_udword_bits)); - * r.s.high = 0; - * r.s.low = n.s.high >> (sr - n_udword_bits); - * } - */ - q.s.low = (n.s.low << (n_utword_bits - sr)) & ((di_int) (int)(n_udword_bits - sr) >> (n_udword_bits - 1)); - q.s.high = ((n.s.low << (n_udword_bits - sr)) & - ((di_int) (int)(sr - n_udword_bits - 1) >> (n_udword_bits - 1))) | - (((n.s.high << (n_utword_bits - sr)) | - (n.s.low >> (sr - n_udword_bits))) & ((di_int) (int)(n_udword_bits - sr) >> (n_udword_bits - 1))); - r.s.high = (n.s.high >> sr) & ((di_int) (int)(sr - n_udword_bits) >> (n_udword_bits - 1)); - r.s.low = ((n.s.high >> (sr - n_udword_bits)) & - ((di_int) (int)(n_udword_bits - sr - 1) >> (n_udword_bits - 1))) | - (((n.s.high << (n_udword_bits - sr)) | - (n.s.low >> sr)) & ((di_int) (int)(sr - n_udword_bits) >> (n_udword_bits - 1))); - } - else - { - /* K X - * --- - * K K - */ - sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); - /*0 <= sr <= n_udword_bits - 1 or sr large */ - if (sr > n_udword_bits - 1) - { - if (rem) - *rem = n.all; - return 0; - } - ++sr; - /* 1 <= sr <= n_udword_bits */ - /* q.all = n.all << (n_utword_bits - sr); */ - q.s.low = 0; - q.s.high = n.s.low << (n_udword_bits - sr); - /* r.all = n.all >> sr; - * if (sr < n_udword_bits) - * { - * r.s.high = n.s.high >> sr; - * r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); - * } - * else - * { - * r.s.high = 0; - * r.s.low = n.s.high; - * } - */ - r.s.high = (n.s.high >> sr) & ((di_int) (int)(sr - n_udword_bits) >> (n_udword_bits - 1)); - r.s.low = (n.s.high << (n_udword_bits - sr)) | - ((n.s.low >> sr) & ((di_int) (int)(sr - n_udword_bits) >> (n_udword_bits - 1))); - } - } - /* Not a special case - * q and r are initialized with: - * q.all = n.all << (n_utword_bits - sr); - * r.all = n.all >> sr; - * 1 <= sr <= n_utword_bits - 1 - */ - su_int carry = 0; - - for (; sr > 0; --sr) - { - /* r:q = ((r:q) << 1) | carry */ - r.s.high = (r.s.high << 1) | (r.s.low >> (n_udword_bits - 1)); - r.s.low = (r.s.low << 1) | (q.s.high >> (n_udword_bits - 1)); - q.s.high = (q.s.high << 1) | (q.s.low >> (n_udword_bits - 1)); - q.s.low = (q.s.low << 1) | carry; - /* carry = 0; - * if (r.all >= d.all) - * { - * r.all -= d.all; - * carry = 1; - * } - */ - const ti_int s = (ti_int) (d.all - r.all - 1) >> (n_utword_bits - 1); - - carry = s & 1; - r.all -= d.all & s; - } - q.all = (q.all << 1) | carry; - if (rem) - *rem = r.all; - return q.all; -} - -// missing, needed by __cairo_uint128_divrem in libcairo.a(cairo-wideint.o) -// http://www.publicsource.apple.com/source/clang/clang-137/src/projects/compiler-rt/lib/umodti3.c -tu_int __umodti3(tu_int a, tu_int b) -{ - tu_int r; - - __udivmodti4(a, b, &r); - return r; -} - -// missing, needed by __cairo_uint128_divrem in libcairo.a(cairo-wideint.o) -// http://www.publicsource.apple.com/source/clang/clang-137/src/projects/compiler-rt/lib/udivti3.c -tu_int __udivti3(tu_int a, tu_int b) -{ - return __udivmodti4(a, b, 0); -} - -// missing, needed by __nl_log_untranslated in libintl.a(log.o) for 10.5 -FILE *fopen$DARWIN_EXTSN(const char *filename, const char *mode) -{ - return fopen(filename, mode); -} - -// missing, needed by _slab_allocator_alloc_chunk in libglib-2.0.a(libglib_2_0_la-gslice.o) for 10.5 -// http://www.spinics.net/lists/fio/msg00700.html -// http://www.publicsource.apple.com/source/clang/clang-137/src/tools/clang/lib/Headers/mm_malloc.h -int posix_memalign(void **ptr, size_t align, size_t size) -{ - if (ptr) - { - *ptr = _mm_malloc(size, align); - return 0; - } - - return ENOMEM; -} -#endif // PATCH_10_5 - -#ifdef PATCH_LIBPNG_EARLIER_THAN_1_5 -// missing in libpng<1.5, needed by _Load_SBit_Png in libfreetype.a(sfnt.o), _error_callback in libfreetype.a(sfnt.o) -// http://stackoverflow.com/questions/5190554/unresolved-external-png-set-longjmp-fn-in-libpng -// http://cpansearch.perl.org/src/JTPALMER/Alien-SDL-1.439_1/patches/SDL_image-1.2.10-libpng15.patch -typedef jmp_buf *(*png_set_longjmp_fnPtr) (png_structp, void *, size_t); -png_set_longjmp_fnPtr png_set_longjmp_fn = 0; -#endif diff --git a/macosx/patch.h b/macosx/patch.h deleted file mode 100644 index b172899f1..000000000 --- a/macosx/patch.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * patch.h - * TuxPaint - * - * Created by Eric on 13-09-13. - * Copyright 2013 __MyCompanyName__. All rights reserved. - * - * Patch to fix code (incompatible, missing...) //EP - * - */ - -#include - -wchar_t *wcsdup(const wchar_t *); diff --git a/macosx/speech.h b/macosx/speech.h deleted file mode 100644 index 3798e09c8..000000000 --- a/macosx/speech.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// speech.h -// TuxPaint -// -// Created by Martin Fuhrer on 13/12/07. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -void speak_string(const wchar_t * str); diff --git a/macosx/speech.m b/macosx/speech.m deleted file mode 100644 index 7d28fe31a..000000000 --- a/macosx/speech.m +++ /dev/null @@ -1,53 +0,0 @@ -// -// speech.m -// TuxPaint -// -// Created by Martin Fuhrer on 13/12/07. -// Copyright (c) 2007 Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#import -#import "speech.h" -#import "i18n.h" - -void speak_string(const wchar_t *widecharString) -{ - #ifndef __APPLE_10_2_8__ - char multibyteString[1024]; - NSString *string = [NSString string]; - - // speech synthesizer can pronounce only English phonemes and syllables - int lang = get_current_language(); - if( lang != LANG_EN && lang != LANG_EN_GB && lang != LANG_EN_ZA ) - return; - - NSArray *voices = [NSSpeechSynthesizer availableVoices]; - NSSpeechSynthesizer *synthesizer = [[NSSpeechSynthesizer alloc] init]; - - wcstombs(multibyteString,widecharString,sizeof(multibyteString)); - if( [string respondsToSelector:@selector(string:stringWithCString:encoding:)] ) - string = [NSString stringWithCString:multibyteString encoding:NSUTF8StringEncoding]; - else - string = [NSString stringWithCString:multibyteString]; - - // speak string using a random voice - [synthesizer setVoice:[voices objectAtIndex:rand()%[voices count]]]; - [synthesizer startSpeakingString:string]; - [synthesizer release]; - #endif // !__APPLE_10_2_8__ -} \ No newline at end of file diff --git a/macosx/version.plist b/macosx/version.plist deleted file mode 100644 index df8c3dc7d..000000000 --- a/macosx/version.plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - BuildVersion - 92 - CFBundleVersion - 1.0 - ProductBuildVersion - 7K571 - ProjectName - NibPBTemplates - SourceVersion - 1200000 - - diff --git a/macosx/wrapperdata.h b/macosx/wrapperdata.h deleted file mode 100644 index b833c4930..000000000 --- a/macosx/wrapperdata.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * wrapperdata.h - * Tux Paint - * - * Created by Martin Fuhrer on Wed May 12 2004. - * Copyright (c) 2004 __MyCompanyName__. All rights reserved. - * - * $Id$ - * - */ - -#ifndef WRAPPER_DATA -#define WRAPPER_DATA - -struct WrapperDataStruct -{ - char dataPath[2048]; // path to data folder inside Tux Paint application bundle - char preferencesPath[2048]; // path to the user's Tux Paint preferences folder - char globalPreferencesPath[2048]; // path to all users' Tux Paint preferences folder - char fontsPath[2048]; // path to the user's fonts folder - int foundSDL; // was SDL.framework found? - int foundSDL_image; // was SDL_image.framework found? - int foundSDL_mixer; // was SDL_mixer.framework found? - int cocoaKeystrokes; // should keystrokes be intercepted by Cocoa wrapper? - int menuAction; // was the action initiated by a Mac OS X menu selection? -}; - -typedef struct WrapperDataStruct WrapperData; - -#endif diff --git a/src/macos.c b/src/macos.c new file mode 100644 index 000000000..349add956 --- /dev/null +++ b/src/macos.c @@ -0,0 +1,48 @@ +#include +#include "macos.h" + +#define MACOS_FONTS_PATH "%s/Library/Fonts" +#define MACOS_PREFERENCES_PATH "%s/Library/Application Support/TuxPaint" +#define MACOS_GLOBAL_PREFERENCES_PATH "/Library/Application Support/TuxPaint" + + +const char* macos_fontsPath() +{ + static char* p = NULL; + + if(!p) { + const char* home = getenv("HOME"); + + p = malloc(strlen(home) + strlen(MACOS_FONTS_PATH) + 1); + + if(p) sprintf(p, MACOS_FONTS_PATH, getenv("HOME")); + else perror("macos_fontsPath"); + } + + return p; +} + + +const char* macos_preferencesPath() +{ + static char* p = NULL; + + if(!p) { + const char* home = getenv("HOME"); + + p = malloc(strlen(home) + strlen(MACOS_PREFERENCES_PATH) + 1); + + if(p) sprintf(p, MACOS_PREFERENCES_PATH, getenv("HOME")); + else perror("macos_preferencesPath"); + } + + return p; +} + + +const char* macos_globalPreferencesPath() +{ + return MACOS_GLOBAL_PREFERENCES_PATH; +} + + diff --git a/src/macos.h b/src/macos.h new file mode 100644 index 000000000..35eab39f8 --- /dev/null +++ b/src/macos.h @@ -0,0 +1,9 @@ +#ifndef __MACOS_H__ +#define __MACOS_H__ + +const char* macos_fontsPath(); +const char* macos_preferencesPath(); +const char* macos_globalPreferencesPath(); + + +#endif /* __MACOS_H__ */ diff --git a/src/macosx_print.h b/src/macosx_print.h deleted file mode 100644 index 7c0a2aaaa..000000000 --- a/src/macosx_print.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// macosx_print.h -// Tux Paint -// -// Created by Darrell Walisser on Sat Mar 15 2003. -// Modified by Martin Fuhrer 2007. -// Copyright (c) 2007 Darrell Walisser, Martin Fuhrer. All rights reserved. -// $Id$ -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// - -#include "SDL.h" - -const char *SurfacePrint(SDL_Surface * surface, int showDialog); -int DisplayPageSetup(const SDL_Surface * surface); - -#ifdef OBJECTIVEC - -@interface PrintSheetController:NSObject -{ - bool displayPrintSetupSheet; - bool displayPrintSheet; -} - --@end -#endif /* OBJECTIVEC */ diff --git a/src/macosx_print.m b/src/macosx_print.m deleted file mode 100644 index cb7f178eb..000000000 --- a/src/macosx_print.m +++ /dev/null @@ -1,327 +0,0 @@ -// -// macosx_print.m -// Tux Paint -// -// Created by Darrell Walisser on Sat Mar 15 2003. -// Modified by Martin Fuhrer 2007. -// Copyright (c) 2007 Darrell Walisser, Martin Fuhrer. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// (See COPYING.txt) -// -// $Id$ -// - -#import "macosx_print.h" -#import "wrapperdata.h" -#import - -extern WrapperData macosx; -NSData* printData = nil; - -// this object presents the image to the printing layer -@interface ImageView : NSView -{ - NSImage* _image; -} -- (void) setImage:(NSImage*)image; -@end - -@implementation ImageView - -- (void) setImage:(NSImage*)image -{ - _image = [ image retain ]; -} - -- (void) drawRect:(NSRect)rect -{ - [ _image compositeToPoint: NSMakePoint( 0, 0 ) operation: NSCompositeCopy ]; -} - -- (BOOL) scalesWhenResized -{ - return YES; -} - -@end - -// this object waits for the print dialog to go away -@interface ModalDelegate : NSObject -{ - BOOL _complete; - BOOL _wasOK; -} -- (id) init; -- (BOOL) wait; -- (void) reset; -- (BOOL) wasOK; -@end - -@implementation ModalDelegate - -- (id) init -{ - self = [ super init ]; - _complete = NO; - _wasOK = NO; - return self; -} - -- (BOOL) wait -{ - while (!_complete) { - NSEvent *event; - event = [ NSApp nextEventMatchingMask:NSAnyEventMask - untilDate:[ NSDate distantFuture ] - inMode: NSDefaultRunLoopMode dequeue:YES ]; - [ NSApp sendEvent:event ]; - } - - return [ self wasOK ]; -} - -- (void) reset -{ - _complete = NO; - _wasOK = NO; -} - -- (BOOL) wasOK -{ - return _wasOK; -} - -- (void)printDidRun:(NSPrintOperation *)printOperation - success:(BOOL)success contextInfo:(void *)contextInfo -{ - _complete = YES; - _wasOK = success; -} - -- (void)pageLayoutEnded:(NSPageLayout *)pageLayout - returnCode:(int)returnCode contextInfo:(void *)contextInfo -{ - _complete = YES; - _wasOK = returnCode == NSOKButton; -} - -@end - -static NSImage* CreateImage( SDL_Surface *surface ) -{ - NSBitmapImageRep* imageRep; - NSSize imageSize; - NSImage* image; - SDL_Surface* surface32RGBA; - - // convert surface to 32bit RGBA -#ifdef BIG_ENDIAN_ARCH - surface32RGBA = SDL_CreateRGBSurface( SDL_SWSURFACE, surface->w, surface->h, - 32, 0xff<<24, 0xff<<16, 0xff<<8, 0xff<<0 ); -#else - surface32RGBA = SDL_CreateRGBSurface( SDL_SWSURFACE, surface->w, surface->h, - 32, 0xff<<0, 0xff<<8, 0xff<<16, 0xff<<24 ); -#endif - if( surface32RGBA == NULL ) { - NSLog (@"CreateImage: Cannot allocate conversion surface"); - return nil; - } - - SDL_BlitSurface( surface, NULL, surface32RGBA, NULL ); - - // convert surface to an NSBitmapImageRep - imageRep = [ [ NSBitmapImageRep alloc] - initWithBitmapDataPlanes:(unsigned char **)&surface32RGBA->pixels - pixelsWide:surface->w - pixelsHigh:surface->h - bitsPerSample:8 - samplesPerPixel:4 - hasAlpha:YES - isPlanar:NO - colorSpaceName:NSDeviceRGBColorSpace - bytesPerRow:surface->w * 4 - bitsPerPixel:32 ]; - if( imageRep == nil ) { - NSLog (@"CreateImage: Could not create image representation."); - return nil; - } - - imageSize = NSMakeSize( surface->w, surface->h ); - - image = [ [ NSImage alloc ] initWithSize:imageSize ]; - if( image == nil ) { - NSLog (@"CreateImage: Could not allocate image"); - return nil; - } - - [ image addRepresentation:imageRep ]; - [ image setScalesWhenResized:YES ]; - [ image setDataRetained:YES ]; - - [ image autorelease ]; - [ imageRep release ]; - free( surface32RGBA ); - - return image; -} - -void DefaultPrintSettings( const SDL_Surface *surface, NSPrintInfo *printInfo ) -{ - if( surface->w > surface->h ) - [ printInfo setOrientation:NSLandscapeOrientation ]; - else - [ printInfo setOrientation:NSPortraitOrientation ]; - - [ printInfo setHorizontallyCentered:true ]; - [ printInfo setVerticallyCentered:true ]; - [ printInfo setVerticalPagination:NSFitPagination ]; - [ printInfo setHorizontalPagination:NSFitPagination ]; -} - -NSPrintInfo* LoadPrintInfo( const SDL_Surface *surface ) -{ - NSUserDefaults* standardUserDefaults; - NSPrintInfo* printInfo; - NSData* printData = nil; - static BOOL firstTime = YES; - - standardUserDefaults = [ NSUserDefaults standardUserDefaults ]; - - if( standardUserDefaults ) - printData = [ standardUserDefaults dataForKey:@"PrintInfo" ]; - - if( printData ) - printInfo = (NSPrintInfo*)[ NSUnarchiver unarchiveObjectWithData:printData ]; - else - { - printInfo = [ NSPrintInfo sharedPrintInfo ]; - if( firstTime == YES ) - { - DefaultPrintSettings( surface, printInfo ); - firstTime = NO; - } - } - - return printInfo; -} - -void SavePrintInfo( NSPrintInfo* printInfo ) -{ - NSUserDefaults* standardUserDefaults; - NSData* printData = nil; - - printData = [ NSArchiver archivedDataWithRootObject:printInfo ]; - standardUserDefaults = [ NSUserDefaults standardUserDefaults ]; - - if( standardUserDefaults ) - [ standardUserDefaults setObject:printData forKey:@"PrintInfo" ]; -} - -int DisplayPageSetup( const SDL_Surface * surface ) -{ - NSPageLayout* pageLayout; - NSPrintInfo* printInfo; - ModalDelegate* delegate; - BOOL result; - - macosx.cocoaKeystrokes = 1; - - printInfo = LoadPrintInfo( surface ); - - delegate = [ [ [ ModalDelegate alloc ] init ] autorelease ]; - pageLayout = [ NSPageLayout pageLayout ]; - [ pageLayout beginSheetWithPrintInfo:printInfo - modalForWindow:[ NSApp mainWindow ] - delegate:delegate - didEndSelector:@selector(pageLayoutEnded:returnCode:contextInfo:) - contextInfo:nil ]; - - result = [ delegate wait ]; - SavePrintInfo( printInfo ); - - macosx.cocoaKeystrokes = 0; - - return (int)( result ); -} - -const char* SurfacePrint( SDL_Surface *surface, int showDialog ) -{ - NSImage* image; - ImageView* printView; - NSWindow* printWindow; - NSPrintOperation* printOperation; - NSPrintInfo* printInfo; - ModalDelegate* delegate; - BOOL ok = YES; - - // check if printers are available - NSArray* printerNames = [NSPrinter printerNames]; - if( [printerNames count] == 0 && !showDialog) - return "No printer is available. Run Tux Paint in window mode (not fullscreen), and select File > Print... to choose a printer."; - - // create image for surface - image = CreateImage( surface ); - if( image == nil ) - return "Could not create a print image."; - - // create print control objects - printInfo = LoadPrintInfo( surface ); - - NSRect pageRect = [ printInfo imageablePageBounds ]; - NSSize pageSize = pageRect.size; - NSPoint pageOrigin = pageRect.origin; - - [ printInfo setTopMargin:pageOrigin.y ]; - [ printInfo setLeftMargin:pageOrigin.x ]; - [ printInfo setRightMargin:pageOrigin.x ]; - [ printInfo setBottomMargin:pageOrigin.y ]; - - float surfaceRatio = (float)( surface->w ) / (float)( surface->h ); - float pageRatio = pageSize.width / pageSize.height; - - NSSize imageSize = pageSize; - if( pageRatio > surfaceRatio ) // wide page - imageSize.width = surface->w * pageSize.height / surface->h; - else // tall page - imageSize.height = surface->h * pageSize.width / surface->w; - - // create print view - printView = [ [ [ ImageView alloc ] initWithFrame: NSMakeRect( 0, 0, imageSize.width, imageSize.height ) ] autorelease ]; - if (printView == nil) - return "Could not create a print view."; - - [ image setSize:imageSize ]; - [ printView setImage:image ]; - - // run printing - printOperation = [ NSPrintOperation printOperationWithView:printView printInfo:printInfo ]; - [ printOperation setShowsPrintPanel:showDialog ]; //EP replaced setShowPanels by setShowsPrintPanel - - macosx.cocoaKeystrokes = 1; - delegate = [ [ [ ModalDelegate alloc ] init ] autorelease ]; - [ printOperation runOperationModalForWindow:[ NSApp mainWindow ] - delegate:delegate didRunSelector:@selector(printDidRun:success:contextInfo:) contextInfo:nil ]; - - ok = [ delegate wait ]; - - macosx.cocoaKeystrokes = 0; - - SavePrintInfo( printInfo ); - [ image release ]; - - return NULL; -} -