View | Details | Raw Unified | Return to problem 1357
Collapse All | Expand All

(-)cmake/Modules/ResolveCompilerPaths.cmake.orig (+1 lines)
Lines 82-87 Link Here
82
  foreach (token ${_all_tokens})
82
  foreach (token ${_all_tokens})
83
    string (REGEX REPLACE "^-I" "" token ${token})
83
    string (REGEX REPLACE "^-I" "" token ${token})
84
    string (REGEX REPLACE "//" "/" token ${token})
84
    string (REGEX REPLACE "//" "/" token ${token})
85
    string (REGEX REPLACE "(^\"|\"$)" "" token ${token})
85
    if (EXISTS ${token})
86
    if (EXISTS ${token})
86
      list (APPEND _incs_found ${token})
87
      list (APPEND _incs_found ${token})
87
    else (EXISTS ${token})
88
    else (EXISTS ${token})

Return to problem 1357