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:
parent
cc5470d068
commit
96e959342a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user