| 1253 | } |
| 1254 | |
| 1255 | bool cmTarget::IsFrameworkOnApple() const |
| 1256 | { |
| 1257 | return ((this->GetType() == cmStateEnums::SHARED_LIBRARY || |
| 1258 | this->GetType() == cmStateEnums::STATIC_LIBRARY) && |
| 1259 | this->IsApple() && this->GetPropertyAsBool("FRAMEWORK")); |
| 1260 | } |
| 1261 | |
| 1262 | bool cmTarget::IsArchivedAIXSharedLibrary() const |
| 1263 | { |
no test coverage detected