diff options
| author | ruki <[email protected]> | 2023-01-15 11:58:26 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-01-15 11:58:26 +0800 |
| commit | b40f133340783f4f86ed1e7fa5ea82848128ab7b (patch) | |
| tree | fe5c606f2fbd2d168b206ee350e0d444720c5390 | |
| parent | 9a1bbce7fcfddafbc9bc07e08876eb83a3bd60c7 (diff) | |
support vc6.0
| -rw-r--r-- | xmake/modules/detect/sdks/find_vstudio.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua index 37568a24d..50092ff12 100644 --- a/xmake/modules/detect/sdks/find_vstudio.lua +++ b/xmake/modules/detect/sdks/find_vstudio.lua @@ -312,6 +312,9 @@ function _find_vstudio(opt) end table.insert(paths, path.join(logical_drive, "Program Files", "Microsoft Visual Studio", vsvers[version], "*", "VC", "Auxiliary", "Build")) table.insert(paths, path.join(logical_drive, "Program Files", "Microsoft Visual Studio " .. version, "VC")) + if version == "6.0" then + table.insert(paths, path.join(logical_drive, "Program Files", "Microsoft Visual Studio", "VC98", "Bin")) + end end vcvarsall = find_file("vcvarsall.bat", paths) or find_file("vcvars32.bat", paths) end |
