v2 / vlib / v / builder / msvc.v
15 lines · 14 sloc · 353 bytes · f77bb32044c5130e9f0aeac26e72443a5fe9dc75
Raw
1module builder
2
3// TODO: move this to msvc_default.v
4struct 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