MCPcopy Create free account
hub / github.com/Autodesk/Aurora / BuildConfigs

Function BuildConfigs

Scripts/installExternalsFunctions.py:339–347  ·  view source on GitHub ↗
(context)

Source from the content-addressed store, hash-verified

337 return "{tag}{procs}".format(tag=tag, procs=numJobs)
338
339def BuildConfigs(context):
340 configs = []
341 if context.buildDebug:
342 configs.append("Debug")
343 if context.buildRelease:
344 configs.append("Release")
345 if context.buildRelWithDebInfo :
346 configs.append("RelWithDebInfo")
347 return configs
348
349def RunCMake(context, clean, instFolder= None, extraArgs = None, configExtraArgs = None, install = True):
350 """

Callers 3

InstallBoostFunction · 0.85
InstallTBB_LinuxFunction · 0.85
RunCMakeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected