| 1 | module builder |
| 2 | |
| 3 | // TODO: move this to msvc_default.v |
| 4 | struct MsvcResult { |
| 5 | full_cl_exe_path string |
| 6 | exe_path string |
| 7 | um_lib_path string |
| 8 | ucrt_lib_path string |
| 9 | vs_lib_path string |
| 10 | um_include_path string |
| 11 | ucrt_include_path string |
| 12 | vs_include_path string |
| 13 | shared_include_path string |
| 14 | valid bool |
| 15 | } |
| 16 |