MCPcopy Create free account
hub / github.com/nodejs/node / FileGroup

Method FileGroup

tools/gyp/pylib/gyp/xcodeproj_file.py:2012–2022  ·  view source on GitHub ↗
(self, path)

Source from the content-addressed store, hash-verified

2010 return "Frameworks"
2011
2012 def FileGroup(self, path):
2013 (_root, ext) = posixpath.splitext(path)
2014 if ext != "":
2015 ext = ext[1:].lower()
2016 if ext == "o":
2017 # .o files are added to Xcode Frameworks phases, but conceptually aren't
2018 # frameworks, they're more like sources or intermediates. Redirect them
2019 # to show up in one of those other groups.
2020 return self.PBXProjectAncestor().RootGroupForPath(path)
2021 else:
2022 return (self.PBXProjectAncestor().FrameworksGroup(), False)
2023
2024
2025class PBXShellScriptBuildPhase(XCBuildPhase):

Callers

nothing calls this directly

Calls 3

RootGroupForPathMethod · 0.80
FrameworksGroupMethod · 0.80
PBXProjectAncestorMethod · 0.45

Tested by

no test coverage detected