MCPcopy Create free account
hub / github.com/SolaWing/xcode-build-server / additionalFlags

Function additionalFlags

compile_database.py:39–47  ·  view source on GitHub ↗
(flagsPath)

Source from the content-addressed store, hash-verified

37
38
39def additionalFlags(flagsPath):
40 if flagsPath and os.path.isfile(flagsPath):
41
42 def valid(s):
43 return s and not s.startswith("#")
44
45 with open(flagsPath) as f:
46 return list(filter(valid, (line.strip() for line in f)))
47 return []
48
49
50def findAllHeaderDirectory(rootDirectory, store):

Callers 1

InferFlagsForSwiftFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected