| 80 | |
| 81 | |
| 82 | class VS2017(Generator): |
| 83 | |
| 84 | def __init__(self): |
| 85 | super(VS2017, self).__init__(5) |
| 86 | |
| 87 | def get_generator(self): |
| 88 | return 'Visual Studio 15 2017 Win64' |
| 89 | |
| 90 | def get_arch(self): |
| 91 | return None |
| 92 | |
| 93 | def get_sdk_version(self): |
| 94 | return '8.1' |
| 95 | |
| 96 | |
| 97 | def get_win_generators(): |
no outgoing calls
no test coverage detected