cmake: Also detect Windows paths

This commit is contained in:
Daniel Mensinger 2019-06-28 20:49:25 +02:00
parent ec0998e694
commit 8320217210
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ class CMakeTraceParser:
def _guess_files(self, broken_list: List[str]) -> List[str]:
#Try joining file paths that contain spaces
reg_start = re.compile(r'^/.*/[^./]+$')
reg_start = re.compile(r'^([A-Za-z]:)?/.*/[^./]+$')
reg_end = re.compile(r'^.*\.[a-zA-Z]+$')
fixed_list = [] # type: List[str]