1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler/msvc: support paths with hyphen

This commit is contained in:
Joe Conigliaro 2019-09-05 09:57:29 +10:00 committed by Alexander Medvednikov
parent cc5470d068
commit 96e959342a

View File

@ -330,6 +330,10 @@ pub fn (v mut V) cc_msvc() {
// Which ever one of these is lowest we use
// TODO: we really shouldnt support all of these cmon
mut lowest := base.index('-')
// dont break paths with hyphens
if lowest != 0 {
lowest = -1
}
for x in [base.index(' '), base.index(',')] {
if (x < lowest && x != -1) || lowest == -1 {
lowest = x