Commit e404a4aa authored by Jason R. Coombs's avatar Jason R. Coombs

Reindent to avoid raw strings and hanging indents. Let os.path.join provide...

Reindent to avoid raw strings and hanging indents. Let os.path.join provide the backslash characters.
parent 0746957d
...@@ -896,18 +896,34 @@ class EnvironmentInfo: ...@@ -896,18 +896,34 @@ class EnvironmentInfo:
libpath += [os.path.join(ref, r'CommonConfiguration\Neutral')] libpath += [os.path.join(ref, r'CommonConfiguration\Neutral')]
if self.vc_ver >= 14.0: if self.vc_ver >= 14.0:
libpath += [ref, libpath += [
ref,
os.path.join(self.si.WindowsSdkDir, 'UnionMetadata'), os.path.join(self.si.WindowsSdkDir, 'UnionMetadata'),
os.path.join(ref, 'Windows.Foundation.' os.path.join(
r'UniversalApiContract\1.0.0.0'), ref,
os.path.join(ref, 'Windows.Foundation.' 'Windows.Foundation.UniversalApiContract'
r'FoundationContract\1.0.0.0'), '1.0.0.0',
os.path.join(ref, 'Windows.Networking.Connectivity.' ),
r'WwanContract\1.0.0.0'), os.path.join(
os.path.join(self.si.WindowsSdkDir, 'ExtensionSDKs' ref,
r'\Microsoft.VCLibs\%0.1f\References' 'Windows.Foundation.FoundationContract',
r'\CommonConfiguration\neutral' % '1.0.0.0',
self.vc_ver)] ),
os.path.join(
ref,
'Windows.Networking.Connectivity.WwanContract'
'1.0.0.0',
),
os.path.join(
self.si.WindowsSdkDir,
'ExtensionSDKs',
'Microsoft.VCLibs',
'%0.1f' % self.vc_ver,
'References',
'CommonConfiguration',
'neutral',
),
]
return libpath return libpath
@property @property
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment