MCPcopy Create free account
hub / github.com/OpenAssetIO/OpenAssetIO / __cmake

Method __cmake

src/openassetio-python/setup.py:88–96  ·  view source on GitHub ↗

Execute `cmake` as a subprocess with given arguments. @param args: Command-line arguments to pass to `cmake`.

(self, args: List[str])

Source from the content-addressed store, hash-verified

86 )
87
88 def __cmake(self, args: List[str]):
89 """
90 Execute `cmake` as a subprocess with given arguments.
91
92 @param args: Command-line arguments to pass to `cmake`.
93 """
94 args = ["cmake"] + args
95 self.announce(" ".join(map(shlex.quote, args)), level=2)
96 subprocess.check_call(args, env=os.environ.copy())
97
98
99setup(

Callers 1

build_extensionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected