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

Class MSVCConfigurations

v2/tools/msvc.py:1109–1120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1107
1108# Similar to Configurations, but remembers the first registered configuration.
1109class MSVCConfigurations(Configurations):
1110 def __init__(self):
1111 Configurations.__init__(self)
1112 self.first_ = None
1113
1114 def register(self, id):
1115 Configurations.register(self,id)
1116 if not self.first_:
1117 self.first_ = id
1118
1119 def first(self):
1120 return self.first_
1121
1122
1123# List of all registered configurations.

Callers 1

msvc.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected