| 2206 | } |
| 2207 | |
| 2208 | bool cmMakefile::IsSet(std::string const& name) const |
| 2209 | { |
| 2210 | cmValue value = this->GetDefinition(name); |
| 2211 | if (!value) { |
| 2212 | return false; |
| 2213 | } |
| 2214 | |
| 2215 | if (value->empty()) { |
| 2216 | return false; |
| 2217 | } |
| 2218 | |
| 2219 | if (cmIsNOTFOUND(*value)) { |
| 2220 | return false; |
| 2221 | } |
| 2222 | |
| 2223 | return true; |
| 2224 | } |
| 2225 | |
| 2226 | bool cmMakefile::PlatformIs32Bit() const |
| 2227 | { |
no test coverage detected