Hi everybody,
I'm new to this list, so Hello to everyone!
The problem I've got, is the copying of Info.plist into the "Product-Path". Each time I change this file and perform a build, nothing is done. I did some investigations on this problem and found out, that the following gets executed to copy this file:
Checking Dependencies PBXCp build/Debug/StoryCard.app/Contents/Info.plist obj/StoryCard.build/Debug/StoryCard.build/Info.plist mkdir /Users/jde/Documents/Projekte/StoryCard/build/Debug/StoryCard.app/Contents cd /Users/jde/Documents/Projekte/StoryCard /System/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jde/Documents/Projekte/StoryCard/obj/StoryCard.build/Debug/StoryCard.build/Info.plist /Users/jde/Documents/Projekte/StoryCard/build/Debug/StoryCard.app/Contents
As you can see, the dependency is checked against an Info.plist file, located in the "obj" directory and not against the one in my main project directory. So, changing the file in my project directory has no effect. Changing the file in the "obj" directory, does what's expected. How can I change this behavior?
regards Joachim |