clide313
clide313

Reputation: 1507

Xcode rebuild entirely my project when I can a single file

Xcode rebuild entirely my project when I can a single file. Node: the file I'm changing is not the .pch file. this is happening to me after the installation of Xcode 3.2.4 with SDK 4.x.

Upvotes: -1

Views: 408

Answers (1)

David Higgins
David Higgins

Reputation: 1401

XCode will rebuild whatever files are necessary to make sure all changes to files are correct. This means that if you change CCNode.c in the cocos2d directory, your going to rebuild all of cocos2d and anything in your project that referenced it.

Without stating what file your changing, or how it relates to your project hierarchy, it's really hard to answer your question.

Upvotes: 0

Related Questions