| 58 | } |
| 59 | |
| 60 | bool GetListString(std::string& listString, std::string const& var, |
| 61 | cmMakefile const& makefile) |
| 62 | { |
| 63 | // get the old value |
| 64 | cmValue cacheValue = makefile.GetDefinition(var); |
| 65 | if (!cacheValue) { |
| 66 | return false; |
| 67 | } |
| 68 | listString = *cacheValue; |
| 69 | return true; |
| 70 | } |
| 71 | |
| 72 | cm::optional<cmList> GetList(std::string const& var, |
| 73 | cmMakefile const& makefile) |
no test coverage detected
searching dependent graphs…