We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5ef5e9 commit 8c740d6Copy full SHA for 8c740d6
python/setup.py
@@ -453,12 +453,7 @@ def get_ext_built_api_header(self, name):
453
def get_ext_built(self, name):
454
if sys.platform == 'win32':
455
head, tail = os.path.split(name)
456
- # Visual Studio seems to differ from other generators in
457
- # where it places output files.
458
- if self.cmake_generator.startswith('Visual Studio'):
459
- return pjoin(head, self.build_type, tail + ext_suffix)
460
- else:
461
- return pjoin(head, tail + ext_suffix)
+ return pjoin(head, self.build_type, tail + ext_suffix)
462
else:
463
return pjoin(self.build_type, name + ext_suffix)
464
0 commit comments