(self, pbxbuildfile, path=None)
| 1944 | self._files_by_xcfilelikeelement[xcfilelikeelement] = pbxbuildfile |
| 1945 | |
| 1946 | def AppendBuildFile(self, pbxbuildfile, path=None): |
| 1947 | # Callers should use this instead of calling |
| 1948 | # AppendProperty('files', pbxbuildfile) directly because this function |
| 1949 | # maintains the object's dicts. Better yet, callers can just call AddFile |
| 1950 | # with a pathname and not worry about building their own PBXBuildFile |
| 1951 | # objects. |
| 1952 | self.AppendProperty("files", pbxbuildfile) |
| 1953 | self._AddBuildFileToDicts(pbxbuildfile, path) |
| 1954 | |
| 1955 | def AddFile(self, path, settings=None): |
| 1956 | (file_group, hierarchical) = self.FileGroup(path) |
no test coverage detected