Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why are the Targets memberships checkboxes disabled for all files?

Tags:

xcode

Why are the Targets memberships checkboxes disabled for all files in my xCode project ?

PS. I'm using xCode 3

enter image description here

like image 896
aneuryzm Avatar asked Jan 19 '23 14:01

aneuryzm


1 Answers

Target membership defines whether or not certain file is compiled and linked or copied to the bundle for the given target. As there's usually no specific actions for header separately - they're included in source files and those source files are compiled with contents of headers - so there's no sense in target membership for header files.

If you check properties for implementation files then target membership should be enabled

like image 197
Vladimir Avatar answered May 18 '23 18:05

Vladimir