Hi,
after updating Xcode to version 8.0 this morning I got the following error:
<name of my computer> cannot run <name of application>.
   <name of my computer> runs macOS 10.11.6,
   which is lower than FFT’s minimum deployment target.
   Change your project’s minimum deployment target
   or upgrade pippa’s version of macOS.
I had to change the ‘Deployment Target’ to 10.7 (or higher) to fix the problem.
How to change the deployment target
Manually using Xcode:
- open the project navigator (click the leftmost icon in the upper line of the leftmost pane)
- open the ‘General’ tab
- go to the ‘Deployment Info’ section
- Change the ‘Deployment Target’ to 10.7 (or higher)
- recompile
By editing the project settings:
- open the corresponding project settings in file
 <project dir>/Builds/MacOSX/<project name>.xcodeproj/project.pbxproj
- change     MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
 toMACOSX_DEPLOYMENT_TARGET = 10.7;
 (or some higher value)
- recompile
I hope this helps. Thanks,
Dietrich

