Lines Matching refs:name
75 def __init__ (self, name, isMultiConfig = False, extraBuildArgs = [], platform = None):
76 self.name = name
82 return self.name
85 args = ['-G', self.name]
131 name = "Visual Studio %d" % version
136 # From VS2019 onwards, the architecture is given by -A <platform-name> switch
143 name += " Win64"
145 CMakeGenerator.__init__(self, name, isMultiConfig = True, extraBuildArgs = ['/m'], platform = platform)
164 def registryKeyAvailable (root, arch, name):
166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
193 for root, name in keys:
194 if VSProjectGenerator.registryKeyAvailable(root, arch, name):