| 558 | } |
| 559 | |
| 560 | Find_Result find_visual_studio_and_windows_sdk() { |
| 561 | Find_Result result; |
| 562 | |
| 563 | find_windows_kit_root(&result); |
| 564 | |
| 565 | // if (result.windows_sdk_root) { |
| 566 | // result.windows_sdk_um_library_path = concat(result.windows_sdk_root, L"\\um\\x64"); |
| 567 | // result.windows_sdk_ucrt_library_path = concat(result.windows_sdk_root, L"\\ucrt\\x64"); |
| 568 | // } |
| 569 | |
| 570 | find_visual_studio_by_fighting_through_microsoft_craziness(&result); |
| 571 | |
| 572 | return result; |
| 573 | } |
| 574 | |
| 575 | BF_EXPORT const char* BF_CALLTYPE VSSupport_Find() |
| 576 | { |
no test coverage detected