| 672 | } |
| 673 | |
| 674 | bool IsValidFeatureFormat(std::string const& format) |
| 675 | { |
| 676 | return format.find("<LIBRARY>") != std::string::npos || |
| 677 | format.find("<LIB_ITEM>") != std::string::npos || |
| 678 | format.find("<LINK_ITEM>") != std::string::npos; |
| 679 | } |
| 680 | |
| 681 | class FeaturePlaceHolderExpander : public cmPlaceholderExpander |
| 682 | { |
no test coverage detected
searching dependent graphs…