Xcode - duplicate Target - new Target fails to build
Posted
by
SirRatty
on Stack Overflow
See other posts from Stack Overflow
or by SirRatty
Published on 2010-12-28T03:51:40Z
Indexed on
2010/12/28
3:53 UTC
Read the original article
Hit count: 366
Hi all,
using Xcode 3.2.5 on 10.6.6 (10J521)
I have an Xcode project containing 1 Target: "MyApp". It builds and runs successfully.
As well as source and resource files, the Target contains a "Copy Files" build phase which copies "Sparkle.framework" in. The framework is in the same directory as the project.
I want to duplicate this Target. Steps taken:
Did "Clean all Targets".
Right-clicked on the "MyApp" Target within Xcode, and then chose "Duplicate".
Renamed the duplicated target to "MyAppTarget2".
Selected "MyAppTarget2" as the Active Target from the popup menu in the top-left.
Did "Build".
The problem:
error: Sparkle/Sparkle.h: No such file or directory
This is puzzling!
Each Build step appears to have been replicated in the duplicated Target, including the "Copy Files" phase.
The Sparkle.framework exists at the path indicated by [Get Info on the Copy Phase item].
If I right-click on the Sparkle.framework file within the "Copy Files" build phase of the duplicated Target, and select "Reveal in Finder", then the correct Sparkle.framework file is shown. The required file exists at Sparkle.framework/Headers/Sparkle.h
If I switch back to the original "MyApp" target, it builds and runs successfully.
Am I doing something obviously wrong here? Thanks.
© Stack Overflow or respective owner