(header, pbxp, xct, is_public)
| 552 | |
| 553 | |
| 554 | def AddHeaderToTarget(header, pbxp, xct, is_public): |
| 555 | # TODO(mark): Combine with AddSourceToTarget above? Or just inline this call |
| 556 | # where it's used. |
| 557 | settings = "{ATTRIBUTES = (%s, ); }" % ("Private", "Public")[is_public] |
| 558 | xct.HeadersPhase().AddFile(header, settings) |
| 559 | |
| 560 | |
| 561 | _xcode_variable_re = re.compile(r"(\$\((.*?)\))") |
no test coverage detected