![]() |
![]() |
|
|
|
|
|
Here’s a tip for fellow XCode users. If you want to release a single app/plugin/whatever that will work on both 10.3 and 10.4 intel/ppc, this guy’s blog post gives you the deets. I know he talks about AppleScript Studio, but ignore that and focus on the XCode bits. Long story short, for the impatient, you need to define four new build settings (use the + at the bottom of the build tab of the project inspector). You probably only want to define them for your Release configuration, since you’ll presumably only be developing on one machine at a time: MACOSX_DEPLOYMENT_TARGET_ppc = 10.3 MACOSX_DEPLOYMENT_TARGET_i386 = 10.4 SDKROOT_ppc = /Developer/SDKs/MacOSX10.3.9.sdk SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk Make sure that the
|
|
![]() |
![]() |



