(context)
| 337 | return "{tag}{procs}".format(tag=tag, procs=numJobs) |
| 338 | |
| 339 | def 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 | |
| 349 | def RunCMake(context, clean, instFolder= None, extraArgs = None, configExtraArgs = None, install = True): |
| 350 | """ |
no outgoing calls
no test coverage detected