| 2813 | } |
| 2814 | |
| 2815 | void cmCTest::PopulateCustomVector(cmMakefile* mf, std::string const& def, |
| 2816 | std::vector<std::string>& vec) |
| 2817 | { |
| 2818 | cmValue dval = mf->GetDefinition(def); |
| 2819 | if (!dval) { |
| 2820 | return; |
| 2821 | } |
| 2822 | cmCTestLog(this, DEBUG, "PopulateCustomVector: " << def << std::endl); |
| 2823 | |
| 2824 | cmList::assign(vec, *dval); |
| 2825 | |
| 2826 | for (std::string const& it : vec) { |
| 2827 | cmCTestLog(this, DEBUG, " -- " << it << std::endl); |
| 2828 | } |
| 2829 | } |
| 2830 | |
| 2831 | void cmCTest::PopulateCustomInteger(cmMakefile* mf, std::string const& def, |
| 2832 | int& val) |
no test coverage detected