MCPcopy Create free account
hub / github.com/boostorg/build / should_clean_project

Function should_clean_project

v2/build_system.py:403–413  ·  view source on GitHub ↗
(project)

Source from the content-addressed store, hash-verified

401#
402@cached
403def should_clean_project(project):
404
405 if project in project_targets:
406 return True
407 else:
408
409 parent = get_manager().projects().attribute(project, "parent-module")
410 if parent and parent != "user-config":
411 return should_clean_project(parent)
412 else:
413 return False
414
415################################################################################
416#

Callers 1

actual_clean_targetsFunction · 0.85

Calls 2

get_managerFunction · 0.90
projectsMethod · 0.80

Tested by

no test coverage detected