MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / GetDepend

Function GetDepend

tools/ng/building_ng.py:75–85  ·  view source on GitHub ↗

Enhanced GetDepend that uses the new OOP implementation.

(depend)

Source from the content-addressed store, hash-verified

73_original_GetDepend = GetDepend
74
75def GetDepend(depend):
76 """
77 Enhanced GetDepend that uses the new OOP implementation.
78 """
79 global Env
80 if Env and hasattr(Env, 'GetDepend'):
81 # Use new method if available
82 return Env.GetDepend(depend)
83 else:
84 # Fallback to original
85 return _original_GetDepend(depend)
86
87
88# Override DoBuilding to integrate project generation

Callers

nothing calls this directly

Calls 1

GetDependMethod · 0.80

Tested by

no test coverage detected